Refactor various names, add git configs, add to installs

This commit is contained in:
david
2025-04-04 16:55:39 -05:00
parent a8f1fcfaa8
commit fbca6ae42e
18 changed files with 65 additions and 25 deletions

View File

@ -1,10 +1,19 @@
# env vars
# 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 ZDOTDIR="$DIR_CONFIG/zsh"
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"