From 434120cc90578fc1b2bc8ab11151135bba384b44 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Thu, 11 Mar 2021 16:40:28 -0800 Subject: [PATCH] Support aliases.local --- dotfiles/zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/dotfiles/zshrc b/dotfiles/zshrc index 95ee6dd..2f6d21a 100755 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -89,6 +89,7 @@ bindkey "^[[3~" delete-char # Source extras and aliases if interactive if [[ $- == *i* ]] ; then if [[ -e $HOME/.aliases ]] ; then source $HOME/.aliases ; fi + if [[ -e $HOME/.aliases.local ]] ; then source $HOME/.aliases.local ; fi # zsh-only-ism to avoid error if glob doesn't expand for file in $HOME/.zshrc.d/[a-zA-Z0-9]*.zsh(N) ; do source "$file"