Created
May 14, 2010 19:24
-
-
Save mackstann/401542 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
# zshrc is for interactive shells only | |
setopt no_beep | |
setopt no_hup | |
setopt no_check_jobs | |
setopt no_bg_nice | |
setopt no_menu_complete | |
setopt no_auto_menu | |
setopt no_no_match | |
setopt no_auto_remove_slash | |
setopt complete_in_word | |
setopt hist_ignore_all_dups | |
setopt rm_star_silent | |
bindkey -v # vi mode, if you want it | |
bindkey '^?' backward-delete-char # only necessary for vi mode | |
bindkey '^R' history-incremental-search-backward | |
bindkey '^P' history-incremental-search-backward | |
bindkey '^N' history-incremental-search-forward |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment