Created
June 15, 2011 13:52
-
-
Save bascht/1027135 to your computer and use it in GitHub Desktop.
This file contains 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" ]] && . "$HOME/.rvm/scripts/rvm" # This loads RVM into a shell session. | |
# Movement | |
bindkey '^P' zsh-history-substring-search-backward | |
bindkey '^N' zsh-history-substring-search-forward | |
bindkey '∫' emacs-backward-word | |
bindkey '' backward-char | |
bindkey 'ƒ' emacs-forward-word | |
bindkey '^F' forward-char | |
bindkey '^E' end-of-line | |
bindkey '^A' beginning-of-line | |
# Fix backward tabbing | |
bindkey '^[[Z' reverse-menu-complete | |
# Git | |
export GIT_AUTHOR_NAME="Sebastian Schulze" | |
export GIT_AUTHOR_EMAIL="[email protected]" | |
export GIT_COMMITTER_NAME="Sebastian Schulze" | |
export GIT_COMMITTER_EMAIL="[email protected]" | |
export GIT_EDITOR="/usr/bin/vim" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment