Last active
December 11, 2015 03:39
-
-
Save zmpeg/4539857 to your computer and use it in GitHub Desktop.
my zsh config
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
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* |
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
# 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