(zsh) setops in lowercase

This commit is contained in:
Bartek Stalewski 2025-08-19 15:50:04 +02:00
parent 9a5db52e52
commit 695bb39c84
No known key found for this signature in database

View file

@ -31,18 +31,18 @@ mkdir -p "${XDG_DATA_HOME}/zsh"
export HISTFILE="${XDG_DATA_HOME}/zsh/history" export HISTFILE="${XDG_DATA_HOME}/zsh/history"
export HISTSIZE=10000 export HISTSIZE=10000
export SAVEHIST=$HISTSIZE export SAVEHIST=$HISTSIZE
setopt EXTENDED_HISTORY setopt extended_history
setopt HIST_EXPIRE_DUPS_FIRST setopt hist_expire_dups_first
setopt HIST_FIND_NO_DUPS setopt hist_find_no_dups
setopt HIST_IGNORE_ALL_DUPS setopt hist_ignore_all_dups
setopt HIST_IGNORE_DUPS setopt hist_ignore_dups
setopt HIST_IGNORE_SPACE setopt hist_ignore_space
setopt HIST_REDUCE_BLANKS setopt hist_reduce_blanks
setopt HIST_SAVE_NO_DUPS setopt hist_save_no_dups
setopt INC_APPEND_HISTORY setopt inc_append_history
setopt SHARE_HISTORY setopt share_history
setopt RMSTARSILENT setopt rmstarsilent
rm -rf "${ZDOTDIR}/.zsh_history" && ln -sf "${XDG_DATA_HOME}/zsh/history" "${ZDOTDIR}/.zsh_history" #rm -rf "${ZDOTDIR}/.zsh_history" && ln -sf "${XDG_DATA_HOME}/zsh/history" "${ZDOTDIR}/.zsh_history"
# set path # set path
path=(~/.local/bin "${path[@]}") path=(~/.local/bin "${path[@]}")