29 lines
1.1 KiB
Bash
29 lines
1.1 KiB
Bash
################# DO NOT MODIFY THIS FILE #######################
|
|
####### PLACE YOUR CONFIGS IN ~/.config/ezsh/zshrc FOLDER #######
|
|
#################################################################
|
|
|
|
# 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
|
|
ZSH_CONFIGS_DIR="$HOME/.config/ezsh/zshrc"
|
|
|
|
if [ "$(ls -A $ZSH_CONFIGS_DIR)" ]; then
|
|
for file in "$ZSH_CONFIGS_DIR"/*; do
|
|
source "$file"
|
|
done
|
|
fi
|
|
|
|
# Now source oh-my-zsh.sh so that any plugins added in ~/.config/ezsh/zshrc/* files also get loaded
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
|
|
# Configs that can only work after "source $ZSH/oh-my-zsh.sh", such as Aliases that depend oh-my-zsh plugins
|
|
alias k="k -h" # show human readable file sizes, in kb, mb etc
|