12 lines
269 B
Bash
12 lines
269 B
Bash
#!/bin/sh
|
|
|
|
# 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
|
|
export BROWSER=qutebrowser
|