Skip to content

Instantly share code, notes, and snippets.

@brapse
Created October 15, 2010 15:44
Show Gist options
  • Save brapse/628407 to your computer and use it in GitHub Desktop.
Save brapse/628407 to your computer and use it in GitHub Desktop.
# 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