Created
October 15, 2010 15:44
-
-
Save brapse/628407 to your computer and use it in GitHub Desktop.
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
# History Config | |
HISTFILE=~/.histfile | |
HISTSIZE=1000000 | |
SAVEHIST=1000000 | |
# Options | |
setopt autocd extendedglob | |
setopt histignoredups | |
setopt histignorespace | |
setopt histreduceblanks | |
set paste | |
bindkey -v | |
for keymap in v a; do | |
bindkey -$keymap '^F' history-incremental-search-backward | |
done | |
setopt append_history | |
setopt inc_append_history | |
setopt extended_history | |
setopt hist_find_no_dups | |
setopt hist_ignore_all_dups | |
setopt hist_reduce_blanks | |
setopt hist_ignore_space | |
setopt hist_no_store | |
setopt hist_no_functions | |
setopt no_hist_beep | |
setopt hist_save_no_dups |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment