dotfiles/zsh/zshrc

12 lines
288 B
Bash

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