Move the aliases into the custom config directory

This commit is contained in:
Rodolphe Bréard 2021-09-12 12:30:55 +02:00
parent 2425fdca43
commit 0fae4b349d
3 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ export GPG_TTY=$(tty)
pgrep -x -u "${USER}" gpg-agent >/dev/null 2>&1 && export SSH_AGENT_PID=$(pgrep -x -u "${USER}" gpg-agent)
# Aliases
[ -f "$HOME/.aliases" ] && . "$HOME/.aliases"
[ -f "$MY_CONFIG/.aliases" ] && . "$MY_CONFIG/.aliases"
# Proxy settings
[ -f "$HOME/.proxy" ] && . "$HOME/.proxy"

View file

@ -30,7 +30,7 @@ if [ -f "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.
fi
# Aliases
[ -f "$HOME/.aliases" ] && . "$HOME/.aliases"
[ -f "$MY_CONFIG/.aliases" ] && . "$MY_CONFIG/.aliases"
# Proxy settings
[ -f "$HOME/.proxy" ] && . "$HOME/.proxy"