From 55d8cfc46cc9a35048c48599b8fea45b190990a0 Mon Sep 17 00:00:00 2001 From: inference Date: Thu, 8 Dec 2022 14:39:01 +0000 Subject: [PATCH] Switch alias filename to represent globally-available aliases to allow splitting global aliases and per-user aliases. --- zsh/.zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 150d350..fb4f965 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -3,7 +3,7 @@ # Copyright 2022 Inference # License: BSD 3-Clause Clear -# 0.2.0.3 +# 1.0.0.4 # Prompt. @@ -38,6 +38,6 @@ if test -z "${XDG_RUNTIME_DIR}"; then fi # Aliases. -if [[ -f ~/.zsh-aliases ]]; then - . ~/.zsh-aliases +if [[ -f ~/.zsh-alias-global ]]; then + . ~/.zsh-alias-global fi