Skip to content

Instantly share code, notes, and snippets.

@zmpeg
Last active December 11, 2015 03:39
Show Gist options
  • Save zmpeg/4539857 to your computer and use it in GitHub Desktop.
Save zmpeg/4539857 to your computer and use it in GitHub Desktop.
my zsh config
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
# Git prompt
source ~/.zsh/git-prompt/zshrc.sh
PROMPT='%B%m%~%b$(git_super_status) %# '
# Bind jump by word
bindkey '^[[1;5C' emacs-forward-word
bindkey '^[[1;5D' emacs-backward-word
# Fixes running cucumber rake tasks https://github.com/robbyrussell/oh-my-zsh/issues/433
alias rake='noglob rake'
# Fixes ls colors
alias ls='ls --color=auto'
# rvm
source $HOME/.rvm/scripts/rvm
# tmux
alias tmux='tmux -f ~/.tmuxrc'
# gaurd
alias gaurd='guard'
[[ -s /home/matt/.nvm/nvm.sh ]] && . /home/matt/.nvm/nvm.sh # This loads NVM
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment