diff --git a/zsh/zshrc b/zsh/zshrc index 2023f7d..44326a3 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -2,7 +2,7 @@ export PATH="${PATH}:${HOME}/.local/bin" if [[ $(whence -p fig 2> /dev/null) ]]; then FIG_FOUND=1 - eval "$(fig init zsh pre)" + . "$HOME/.fig/shell/zshrc.pre.zsh" fi HISTFILE=~/.histfile @@ -177,5 +177,5 @@ done if [[ $FIG_FOUND == 1 ]]; then # Fig post block. Keep at the bottom of this file. - eval "$(fig init zsh post)" + . "$HOME/.fig/shell/zshrc.post.zsh" fi