diff options
| author | Ben Beltran <ben@freshout.us> | 2012-10-19 15:09:38 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@freshout.us> | 2012-10-19 15:09:38 -0500 |
| commit | 321ecaca67426410316db7db05e6e33809fe1e63 (patch) | |
| tree | 3811f15c160c6593e84ebfab3994c810a0eeeda5 /zshrc | |
| parent | 9041bd938fcce0cf91032c67d529bc21fedeeed3 (diff) | |
Add powerline
Diffstat (limited to 'zshrc')
| -rw-r--r-- | zshrc | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -24,7 +24,7 @@ export ZSH_THEME="ben-prose" # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) # Example format: plugins=(rails git textmate ruby lighthouse) -plugins=(git brew bundler cap gem osx rails3 rvm) +plugins=(git brew bundler cap gem osx rails3 rvm dircycle) source $ZSH/oh-my-zsh.sh @@ -36,6 +36,11 @@ export TERM=screen-256color export JAVA_HOME=$(/usr/libexec/java_home) export PATH=/usr/local/bin:/usr/local/sbin:$PATH export NODE_PATH=/usr/local/lib/node_modules:$NODE_PATH +export PYTONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH + +#Editor. +export EDITOR="vim" +export VISUAL="vim" #display fortune when I start echo -e "\033[30m" @@ -47,10 +52,6 @@ alias dwarffortress="/Applications/Dwarf\ Fortress/df" alias ls="ls -FG" alias rspec="rspec --color" -#Git utility aliases -alias gpsc="git push origin $GIT_BRANCH" -alias gplc="git pull origin $GIT_BRANCH" - #Screeninator and RVM scripts [[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm |