This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
set -x | |
echo "Adding i386 architecture" | |
sudo dpkg --add-architecture i386 | |
sudp apt-get update | |
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# Exit on error | |
set -x | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cscope.* | |
*~ | |
.projectile | |
GPATH | |
GRTAGS | |
GTAGS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# zsh theme contains git, svn prompts | |
ZSH_THEME="awesomepanda" | |
# ll | |
alias ll="ls -la" | |
# emacs daemon | |
export ALTERNATE_EDITOR="" | |
export EDITOR="emacsclient -t" # $EDITOR should open in terminal | |
export VISUAL="emacsclient -c -a emacs" # $VISUAL opens in GUI with non-daemon as alternate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; Base distribution to use. This is a layer contained in the directory |
NewerOlder