zsh: rename .zshalias to .zshlocal

This commit is contained in:
John Bowdre 2023-01-19 16:17:43 -06:00
parent a2266f6e6e
commit a4aa2e15a5

View file

@ -17,9 +17,9 @@ alias k="kubectl"
alias t="tanzu" alias t="tanzu"
alias ll="ls -la" alias ll="ls -la"
# Import local aliases from ~/.zshalias, if present # Import local prefs from ~/.zshlocal, if present
if [ -f $HOME/.zshalias ]; then if [ -f $HOME/.zshlocal ]; then
source $HOME/.zshalias source $HOME/.zshlocal
fi fi
# Shell initializations # Shell initializations