Skip to content

Instantly share code, notes, and snippets.

@skaslev
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save skaslev/e4790a2492226d3ac48c to your computer and use it in GitHub Desktop.

Select an option

Save skaslev/e4790a2492226d3ac48c to your computer and use it in GitHub Desktop.
Bash config
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