reformat code, stylistic changes

This commit is contained in:
2026-02-28 14:45:41 +01:00
parent 25ee2cb422
commit db97601519
20 changed files with 232 additions and 234 deletions

View File

@@ -1,18 +1,18 @@
# Set PATH environment variable
typeset -U path PATH
path=(
"${HOME}/.local/bin"
"/usr/local/sbin"
"/usr/local/bin"
"/usr/sbin"
"/sbin"
"${path[@]}"
"$HOME/.local/bin"
"/usr/local/sbin"
"/usr/local/bin"
"/usr/sbin"
"/sbin"
"${path[@]}"
)
export PATH
# Configure shell history behavior
HISTFILE="${HOME}/.zsh_history"
HISTSIZE="10000"
SAVEHIST="10000"
HISTFILE="$HOME/.zsh_history"
HISTSIZE=10000
SAVEHIST=10000
setopt appendhistory
setopt HIST_IGNORE_SPACE