From a4aa2e15a52340427350dd89d3e3f38a4179f7a8 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Thu, 19 Jan 2023 16:17:43 -0600 Subject: [PATCH] zsh: rename .zshalias to .zshlocal --- zsh/.zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index d64cf87..6663d6a 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -17,9 +17,9 @@ alias k="kubectl" alias t="tanzu" alias ll="ls -la" -# Import local aliases from ~/.zshalias, if present -if [ -f $HOME/.zshalias ]; then - source $HOME/.zshalias +# Import local prefs from ~/.zshlocal, if present +if [ -f $HOME/.zshlocal ]; then + source $HOME/.zshlocal fi # Shell initializations