zsh-etcfiles: move one level up

This commit is contained in:
2024-09-04 22:17:07 -07:00
parent fec031d251
commit ea05ac1087
2 changed files with 0 additions and 0 deletions

18
etc/zsh/zshrc Normal file
View File

@@ -0,0 +1,18 @@
# Zsh options for all users
# enable extended globbing
setopt extended_glob
# autoload misc files
for dotfile in "$ZDOTDIR"/*(D); do
source $dotfile
done
# Check history file
if [[ ! -f "${HISTFILE}" ]]; then
mkdir -p "${HISTFILE%/*}"
touch "${HISTFILE}"
fi
# vim-like keybindings
bindkey -v