2019-07-24 05:33:28 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-03-22 10:49:12 +00:00
|
|
|
# these are mandatory for the shell to work
|
2019-03-12 14:47:07 +00:00
|
|
|
export XDG_CONFIG_HOME="$HOME/.config"
|
2019-02-24 10:06:50 +00:00
|
|
|
export XDG_CACHE_HOME="$HOME/.cache"
|
2019-03-22 10:49:12 +00:00
|
|
|
|
|
|
|
# these are my personal 'important' directories
|
|
|
|
|
|
|
|
export XDG_PROJECTS_DIR="$HOME/projects"
|
|
|
|
|
2019-02-26 09:07:54 +00:00
|
|
|
export EDITOR=nvim
|
2019-08-29 14:45:16 +00:00
|
|
|
export BROWSER=qutebrowser
|