1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-11-22 03:21:30 +01:00

zsh: add history-related setopt options, remove completeealiases

This commit is contained in:
bretello 2020-03-13 21:33:14 +01:00
parent 44f408883e
commit 234e2a3b82

View File

@ -16,8 +16,19 @@ fi
# Enable zsh autocorrection # Enable zsh autocorrection
setopt CORRECT_ALL 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 # Fix command completions on aliases
setopt completealiases # setopt completealiases
## Misc environment variables ## Misc environment variables