Add zsh config

This commit is contained in:
2021-03-24 17:46:57 +00:00
parent 208ea18b29
commit 03bc920b74
4 changed files with 135 additions and 0 deletions

19
zsh/.zshrc Normal file
View File

@@ -0,0 +1,19 @@
# Source exports, if it exists
if [ -f $HOME/.config/zsh/exports.zsh ]; then
source $HOME/.config/zsh/exports.zsh
fi
# Source functions, if it exists
if [ -f $HOME/.config/zsh/functions.zsh ]; then
source $HOME/.config/zsh/functions.zsh
fi
# Source aliases, if it exists
if [ -f $HOME/.config/zsh/aliases.zsh ]; then
source $HOME/.config/zsh/aliases.zsh
fi
# Source completions, if it exists
if [ -f $HOME/.config/zsh/completions.zsh ]; then
source $HOME/.config/zsh/completions.zsh
fi