adding XDG paths to bash
This commit is contained in:
parent
7dc1f3cd9b
commit
5886b3f5f2
1 changed files with 6 additions and 0 deletions
|
@ -16,6 +16,12 @@ export ALTERNATE_EDITOR=""
|
|||
export PATH=".:~/bin:~/.local/bin:/usr/games:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin"
|
||||
export LSCOLORS="ExGxBxDxCxEgEdxbxgxcxd"
|
||||
|
||||
|
||||
# XDG
|
||||
export XDG_CONFIG_HOME="$HOME/.config"
|
||||
export XDG_DATA_HOME="$HOME/.local/share"
|
||||
|
||||
|
||||
# include doom in path if it exists
|
||||
if [ -d ~/.config/emacs/bin ]; then
|
||||
export PATH="$HOME/.emacs.d/bin:$PATH"
|
||||
|
|
Loading…
Reference in a new issue