Dotfiles symlinked to ~ via Makefile. Bash, nvim, tmux configs.
bash/
.bashrc
nvim/
.config/nvim/...
tmux/
.tmux.conf
make # creates symlinks (runs uninstall first)
make install # same as abovemake uninstall # removes all symlinksSUBFOLDERS := bash nvim tmux
for item in $$dir/*; do
ln -sf "$(PWD)/$$item" "$$HOME/$$(basename $$item)";
doneGNU Make • Bash • Symlinks