From 46015167854c8b2544f670e7057ad06312de20da Mon Sep 17 00:00:00 2001 From: JGill Date: Mon, 20 Sep 2021 09:46:22 +0530 Subject: [PATCH] Upload base .zshrc --- .zshrc | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .zshrc diff --git a/.zshrc b/.zshrc new file mode 100644 index 0000000..7de3535 --- /dev/null +++ b/.zshrc @@ -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