[profiles/base] modify zsh config
This commit is contained in:
@@ -1,11 +1,18 @@
|
||||
# Set PATH environment variable
|
||||
typeset -U path PATH
|
||||
path=("${HOME}/.local/bin" /usr/local/sbin /usr/local/bin /usr/sbin /sbin "${path[@]}")
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user