Switch alias filename to represent globally-available aliases to allow splitting global aliases and per-user aliases.

This commit is contained in:
inference 2022-12-08 14:39:01 +00:00
parent 5c823e63bf
commit 55d8cfc46c

View File

@ -3,7 +3,7 @@
# Copyright 2022 Inference # Copyright 2022 Inference
# License: BSD 3-Clause Clear # License: BSD 3-Clause Clear
# 0.2.0.3 # 1.0.0.4
# Prompt. # Prompt.
@ -38,6 +38,6 @@ if test -z "${XDG_RUNTIME_DIR}"; then
fi fi
# Aliases. # Aliases.
if [[ -f ~/.zsh-aliases ]]; then if [[ -f ~/.zsh-alias-global ]]; then
. ~/.zsh-aliases . ~/.zsh-alias-global
fi fi