feat: Moves most configuration

This commit is contained in:
2025-09-27 21:36:25 -04:00
parent 15b488f3a5
commit 9ae31715a3
148 changed files with 22 additions and 2757 deletions

15
dev-env
View File

@@ -52,12 +52,23 @@ update_files() {
popd &>/dev/null
}
copy() {
log "removing: $2"
if [[ $dry_run == "0" ]]; then
rm $2
fi
log "copying: $1 to $2"
if [[ $dry_run == "0" ]]; then
cp $1 $2
fi
}
update_files $DEV_ENV/env/.config $XDG_CONFIG_HOME
update_files $DEV_ENV/env/.local $HOME/.local
#
# copy $DEV_ENV/tmux-sessionizer/tmux-sessionizer $HOME/.local/scripts/tmux-sessionizer
# copy $DEV_ENV/env/.zsh_profile $HOME/.zsh_profile
# copy $DEV_ENV/env/.zshrc $HOME/.zshrc
copy $DEV_ENV/env/.zshenv $HOME/.zshenv
# copy $DEV_ENV/env/.xprofile $HOME/.xprofile
# copy $DEV_ENV/env/.tmux-sessionizer $HOME/.tmux-sessionizer
# copy $DEV_ENV/dev-env $HOME/.local/scripts/dev-env