20 lines
474 B
Bash
20 lines
474 B
Bash
# common/system env vars
|
|
export EDITOR='vim' # TODO: update to nvim once configured
|
|
|
|
# env vars used for my organization structure
|
|
export HOME_BOX="$HOME/dbox"
|
|
export DIR_DEV="$HOME/dev"
|
|
|
|
# general targets for config/builds/etc
|
|
export DIR_CONFIG="$HOME/.config"
|
|
export XDG_CONFIG_HOME=$DIR_CONFIG
|
|
export DIR_LOCAL="$HOME/.local"
|
|
export DIR_BUILD="$DIR_LOCAL/build"
|
|
|
|
# zsh
|
|
export ZDOTDIR="$DIR_CONFIG/zsh" # may already be set, set anyway
|
|
|
|
# git
|
|
export GIT_EDITOR="$EDITOR"
|
|
|