First commit
This commit is contained in:
commit
ab19d3a1e5
7 changed files with 115 additions and 0 deletions
17
includes/10.options.zsh
Normal file
17
includes/10.options.zsh
Normal file
|
@ -0,0 +1,17 @@
|
|||
SAVEHIST=10000
|
||||
HISTSIZE=10000
|
||||
HISTFILE="$HOME/.local/share/zsh/zhistory"
|
||||
|
||||
setopt EXTENDED_HISTORY
|
||||
setopt APPEND_HISTORY
|
||||
setopt HIST_FIND_NO_DUPS
|
||||
setopt HIST_EXPIRE_DUPS_FIRST
|
||||
setopt HIST_IGNORE_SPACE
|
||||
setopt HIST_VERIFY
|
||||
setopt SHARE_HISTORY
|
||||
setopt HIST_IGNORE_DUPS
|
||||
setopt INC_APPEND_HISTORY
|
||||
setopt HIST_REDUCE_BLANKS
|
||||
|
||||
# Activate extended gobbing
|
||||
setopt extended_glob
|
Reference in a new issue