.config/sh/zsh.rc aktualisiert

This commit is contained in:
2025-02-19 09:52:06 +01:00
parent 065d04f9d3
commit 5148fc03ea

View File

@@ -8,12 +8,14 @@ setopt promptsubst # enable command substitution in prompt
# History configurations # History configurations
HISTFILE=~/.zsh_history HISTFILE=~/.zsh_history
HISTSIZE=1000 HISTSIZE=100000
SAVEHIST=2000 SAVEHIST=200000
setopt hist_expire_dups_first # delete duplicates first when HISTFILE size exceeds HISTSIZE setopt hist_expire_dups_first # delete duplicates first when HISTFILE size exceeds HISTSIZE
setopt hist_ignore_dups # ignore duplicated commands history list setopt hist_ignore_dups # ignore duplicated commands history list
setopt hist_ignore_space # ignore commands that start with space setopt hist_ignore_space # ignore commands that start with space
setopt hist_verify # show command with history expansion to user before running it setopt hist_verify # show command with history expansion to user before running it
setopt share_history
setopt extended_history
# enable completion features # enable completion features
autoload -Uz compinit autoload -Uz compinit