zsh: add history-related setopt options, remove completeealiases

feature/symbol-search
bretello 2020-03-13 21:33:14 +01:00
parent 44f408883e
commit 234e2a3b82
1 changed files with 12 additions and 1 deletions

View File

@ -16,8 +16,19 @@ fi
# Enable zsh autocorrection
setopt CORRECT_ALL
# share history across multiple zsh sessions
setopt SHARE_HISTORY
# append to history
setopt APPEND_HISTORY
# adds commands as they are typed, not at shell exit
setopt INC_APPEND_HISTORY
# Execute commands without verifying after prompt substitution (!!, !$, etc)
setopt NO_HIST_VERIFY
# Fix command completions on aliases
setopt completealiases
# setopt completealiases
## Misc environment variables