11 lines
297 B
Bash
11 lines
297 B
Bash
# env vars
|
|
export EDITOR='vim' # TODO: update to nvim once configured
|
|
export HOME_BOX="$HOME/dbox"
|
|
export DIR_DEV="$HOME/dev"
|
|
export DIR_CONFIG="$HOME/.config"
|
|
export XDG_CONFIG_HOME=$DIR_CONFIG
|
|
export ZDOTDIR="$DIR_CONFIG/zsh"
|
|
export DIR_LOCAL="$HOME/.local"
|
|
export DIR_BUILD="$DIR_LOCAL/build"
|
|
|