Skip to content

Instantly share code, notes, and snippets.

@bascht
Created June 15, 2011 13:52
Show Gist options
  • Save bascht/1027135 to your computer and use it in GitHub Desktop.
Save bascht/1027135 to your computer and use it in GitHub Desktop.
[[ -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