diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2025-09-25 09:40:50 -0400 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2025-09-25 09:40:50 -0400 |
commit | be94425fb779edae9b51009e74808588be4d5e51 (patch) | |
tree | dabd29aa289f6466163fbec3555db1e00c4df070 | |
parent | 4b5bf18b5b22aa83b7cb404c67f4e5f106979c6f (diff) | |
download | dotfiles-be94425fb779edae9b51009e74808588be4d5e51.tar.gz |
update dotfiles
-rw-r--r-- | Makefile | 14 | ||||
-rw-r--r-- | git/git/config (renamed from git/.gitconfig) | 0 | ||||
-rw-r--r-- | sh/.shrc | 2 | ||||
-rw-r--r-- | tmux/tmux/tmux.conf (renamed from tmux/.config/tmux/tmux.conf) | 0 |
4 files changed, 10 insertions, 6 deletions
@@ -1,14 +1,18 @@ -PACKAGES != find . -type d -depth 1 -not -name .git -exec basename {} \; -STOW_ARGS = --verbose --no-folding --target ${HOME} +HOME_PACKAGES = readline sh vi vim +XDG_PACKAGES = tmux git +STOW_ARGS = --verbose --no-folding .PHONY: dry-run dry-run: - stow --no --restow ${STOW_ARGS} ${PACKAGES} + stow --no --restow ${STOW_ARGS} --target ${HOME} ${HOME_PACKAGES} + stow --no --restow ${STOW_ARGS} --target ${XDG_CONFIG_HOME} ${XDG_PACKAGES} .PHONY: install install: - stow --restow ${STOW_ARGS} ${PACKAGES} + stow --restow ${STOW_ARGS} --target ${HOME} ${HOME_PACKAGES} + stow --restow ${STOW_ARGS} --target ${XDG_CONFIG_HOME} ${XDG_PACKAGES} .PHONY: uninstall uninstall: - stow --delete ${STOW_ARGS} ${PACKAGES} + stow --delete ${STOW_ARGS} --target ${HOME} ${HOME_PACKAGES} + stow --delete ${STOW_ARGS} --target ${XDG_CONFIG_HOME} ${XDG_PACKAGES} diff --git a/git/.gitconfig b/git/git/config index 69405ed..69405ed 100644 --- a/git/.gitconfig +++ b/git/git/config @@ -6,7 +6,7 @@ unset reset blue green export CLICOLOR=1 export PAGER=less -export LESS='-iMRS -x2' +export LESS='-iMRSF -x2' export EDITOR=vim export LSCOLORS=DxfxgxgxcxxbxbaCacADAd diff --git a/tmux/.config/tmux/tmux.conf b/tmux/tmux/tmux.conf index 3192bf2..3192bf2 100644 --- a/tmux/.config/tmux/tmux.conf +++ b/tmux/tmux/tmux.conf |