Refactor various names, add git configs, add to installs

This commit is contained in:
2025-01-26 19:34:27 -06:00
parent 35617f4280
commit 4aed99d570
18 changed files with 65 additions and 25 deletions

View File

@ -0,0 +1,3 @@
[user]
name = david
email = david@silverwolf.studio

View File

@ -2,4 +2,5 @@
*.swp
*.swo
.tmux-session-hydrate
zxcv*
.DS_Store

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"