Upload base .zshrc

This commit is contained in:
JGill
2021-09-20 09:46:22 +05:30
parent 7626c52c92
commit 4601516785

23
.zshrc Normal file
View File

@@ -0,0 +1,23 @@
################ DO NOT MODIFY THIS FILE #######################
################################################################
# This file is created by ezsh setup.
# Place all your .zshrc configurations / overrides in a single or multiple files under ~/.config/ezsh/zshrc/ folder
# Your original .zshrc is backed up at ~/.zshrc-backup-%y-%m-%d
# Load ezsh configurations
source "$HOME/.config/ezsh/ezshrc.zsh"
# Any zshrc configurations under the folder ~/.config/ezsh/zshrc/ will override the default ezsh configs.
# Place all of your personal configurations over there
ZDOTDIR="$HOME/.config/ezsh/zshrc"
if [ "$(ls -A $ZDOTDIR)" ]; then
for file in "$ZDOTDIR"/*; do
source "$file"
done
fi