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:
parent
44f408883e
commit
234e2a3b82
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user