zsh-etcfiles: move one level up
This commit is contained in:
18
etc/zsh/zshrc
Normal file
18
etc/zsh/zshrc
Normal 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
|
Reference in New Issue
Block a user