9 lines
231 B
Bash
9 lines
231 B
Bash
# these are mandatory for the shell to work
|
|
export XDG_CONFIG_HOME="$HOME/.config"
|
|
export XDG_CACHE_HOME="$HOME/.cache"
|
|
|
|
# these are my personal 'important' directories
|
|
|
|
export XDG_PROJECTS_DIR="$HOME/projects"
|
|
|
|
export EDITOR=nvim
|