Skip to content

Instantly share code, notes, and snippets.

@nickeddy
Created October 15, 2015 16:23
Show Gist options
  • Save nickeddy/c76ea23a01f8df67a94a to your computer and use it in GitHub Desktop.
Save nickeddy/c76ea23a01f8df67a94a to your computer and use it in GitHub Desktop.
antigen/zsh config
#!/bin/zsh
# virtualenvwrapper
# source /usr/local/bin/virtualenvwrapper.sh
# antigen config
source /home/neddy/antigen.zsh
antigen use oh-my-zsh
antigen bundle pip
antigen bundle rimraf/k
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-completions
antigen bundle robbyrussell/oh-my-zsh plugins/command-not-found
antigen bundle robbyrussell/oh-my-zsh plugins/common-aliases
antigen bundle robbyrussell/oh-my-zsh plugins/compleat
antigen bundle robbyrussell/oh-my-zsh plugins/dircycle
antigen bundle robbyrussell/oh-my-zsh plugins/dirhistory
#antigen bundle robbyrussell/oh-my-zsh plugins/gitfast
#antigen bundle robbyrussell/oh-my-zsh plugins/git-flow
antigen bundle robbyrussell/oh-my-zsh plugins/npm
antigen bundle robbyrussell/oh-my-zsh plugins/pip
#antigen bundle robbyrussell/oh-my-zsh plugins/autoenv
antigen bundle robbyrussell/oh-my-zsh plugins/virtualenvwrapper
#antigen bundle kennethreitz/autoenv
#antigen theme agnoster
#antigen theme cypher
antigen apply
# node
source /usr/local/nvm/nvm.sh
eval `dircolors ~/.dircolors`
export GOROOT="/usr/local/bin/go"
export GOPATH="/home/neddy/gocode"
export WORKON_HOME="/home/neddy/venvs"
export PATH="/usr/local/bin/go/bin:/home/neddy/gocode/bin:/usr/local/bin:$PATH"
#export PROMPT="$PROMPT\$(git-radar --zsh --fetch) "
export PROMPT="%m %{${fg_bold[red]}%}:: %{${fg[green]}%}%3~%(0?. . ${fg[red]}%? )
\$(git-radar --zsh --no-remote-status)
%{${fg[blue]}%}»%{${reset_color}%} "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment