Created
December 28, 2014 11:53
-
-
Save alyssais/3327c3b2e1cc68bc964b to your computer and use it in GitHub Desktop.
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 ZSH=$HOME/.oh-my-zsh | |
ZSH_THEME="robbyrussell" | |
COMPLETION_WAITING_DOTS="true" | |
HIST_STAMPS="yyyy-mm-dd" | |
plugins=(git) | |
export PATH=$HOME/.rbenv/bin:$HOME/.pyenv/bin:$HOME/bin:/usr/local/bin:/usr/local/sbin:/usr/sbin:/usr/bin:/sbin:/bin | |
export LANG=en_GB.UTF-8 | |
export TERM="xterm-256color" | |
source $ZSH/oh-my-zsh.sh | |
eval "$(rbenv init -)" | |
eval "$(pyenv init -)" | |
eval "$(pyenv virtualenv-init -)" | |
git() { hub $@ } | |
export NVM_DIR="/home/penman/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment