use stow for ln -s instead of moving.

add nvim
add user and music rc files.
add zsh
This commit is contained in:
publicmatt
2023-12-16 18:17:36 -08:00
parent 0fbf4b41ee
commit 4f3efc79fe
10 changed files with 222 additions and 134 deletions

View File

@@ -1,12 +1,12 @@
FILES:=.vimrc .gitconfig .bash_profile
.PHONY: nvim git shell
all:$(FILES)
. ${HOME}/.bash_profile
all: nvim git shell
$(FILES):
cp -rf $(HOME)/$@ dotfiles/$@.bak
cp -rf dotfiles/$@ ${HOME}/$@
git:
stow git -t ${HOME}
clean:
@echo "clean: idk yet.\nTODO: default config swap\n- .git-config.sample.\n- .debian_bash_profile.sample\n- .vimrc.sample?"
nvim:
stow nvim -t ${HOME}/.config/
shell:
stow shell -t ${HOME}