From 84c92e76a20ea04258a79a84c796b4a81d578a0f Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Sat, 13 Jul 2024 18:21:57 +0300 Subject: [PATCH] [zsh] fixed local config import --- zsh/zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/zshrc b/zsh/zshrc index fd2c7b2..f0f7350 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -14,7 +14,7 @@ setopt histignoredups source ~/.dotfiles/git/git-prompt.sh setopt PROMPT_SUBST ; PS1='%n@%m %c$(__git_ps1 " [%s]")\$ ' -if [ -f "~/.zsh_local" ] +if [[ -a ~/.zshrc_local ]] then source ~/.zshrc_local fi