xdg base dir and pipx common path

This commit is contained in:
tavo-wasd 2023-08-04 16:15:22 -06:00
parent 435282b523
commit 7bc0a62982
2 changed files with 4 additions and 2 deletions

View file

@ -8,9 +8,10 @@ PS1='\[\e[0;1;91m\][\[\e[0;1;38;5;87m\]\u\[\e[0;0;38;5;123m\]@\[\e[0;0;38;5;159m
PROMPT_COMMAND="echo" # Line jump after every command
# General configs
PATH="$HOME/.config/scripts${PATH:+:${PATH}}" # Enables custom scripts dir
PATH="$HOME/.config/scripts/menu${PATH:+:${PATH}}"
PATH="$HOME/.config/scripts/status${PATH:+:${PATH}}"
PATH="$HOME/.config/scripts/menu${PATH:+:${PATH}}"
PATH="$HOME/.config/scripts${PATH:+:${PATH}}"
PATH="$HOME/.local/bin${PATH:+:${PATH}}" # Custom PATHs for executables
bind "set completion-ignore-case on" # Case insensitive TAB complete
shopt -s cdspell # Autocorrect directory name
shopt -s autocd # cd into dir by typing the name

View file

@ -17,3 +17,4 @@ export \
WGETRC="$XDG_CONFIG_HOME/wget/wgetrc" \
ELECTRUMDIR="$XDG_DATA_HOME/electrum" \
CUDA_CACHE_PATH="$XDG_CACHE_HOME/nv" \
GNUPGHOME="$XDG_DATA_HOME/gnupg" \