dotfiles/zsh/zshrc

12 lines
288 B
Bash
Raw Normal View History

#!/usr/bin/env zsh
K_ZSH_DOTFILES="${0:h}"
2021-06-23 09:58:30 +00:00
# Get this file's current directory and source Dima's zshrc from there
SCRIPT_DIR="$( dirname "$( readlink -f "$0" )" )"
2021-06-23 09:58:30 +00:00
source $SCRIPT_DIR/../dmitmel-dotfiles/zsh/zshrc
for script in functions; do
source "$K_ZSH_DOTFILES/$script.zsh"
done