Adding new DOOM EMACS path to shell configs

This commit is contained in:
Derek Taylor
2023-05-19 13:13:12 -05:00
parent 4a0c0ff6f2
commit ad1c20355e
5 changed files with 14 additions and 6 deletions

4
.zshrc
View File

@@ -51,6 +51,10 @@ if [ -d "/var/lib/flatpak/exports/bin/" ] ;
then PATH="/var/lib/flatpak/exports/bin/:$PATH"
fi
if [ -d "$HOME/.config/emacs/bin/" ] ;
then PATH="$HOME/.config/emacs/bin/:$PATH"
fi
### SETTING OTHER ENVIRONMENT VARIABLES
if [ -z "$XDG_CONFIG_HOME" ] ; then
export XDG_CONFIG_HOME="$HOME/.config"