Last active
August 29, 2015 14:08
-
-
Save skaslev/e4790a2492226d3ac48c to your computer and use it in GitHub Desktop.
Bash config
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
| export PROMPT_DIRTRIM=3 | |
| export PS1='\[\033[0;35m\]\u@\h\[\033[0;33m\] \w\[\033[00m\]$ ' | |
| export TERM=xterm-256color | |
| export PATH="$HOME/bin:$PATH" | |
| export GOPATH="$HOME/.go" | |
| export USE_CCACHE=1 | |
| export CCACHE_DIR="$HOME/.ccache" | |
| export CC=/usr/bin/clang | |
| export CXX=/usr/bin/clang++ | |
| alias ls="ls --color" | |
| alias ll="ls -lv --group-directories-first" | |
| alias la="ls -al" | |
| alias less="less --raw" | |
| alias e="emacs -nw" | |
| alias v="vim" | |
| alias r="rd" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment