diff options
author | David Robillard <d@drobilla.net> | 2025-06-06 17:55:08 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-06-06 17:55:08 -0400 |
commit | 7a970c252196d9efd96e9286d8faf912e9b098df (patch) | |
tree | 1a212b1ceff316fb2afcd5d74aaa600e74d30f11 | |
parent | 83051de1196eb1bd78d2ae31e804f7462d304056 (diff) | |
download | dotfiles-main.tar.gz dotfiles-main.tar.bz2 dotfiles-main.zip |
-rwxr-xr-x | deploy.sh | 1 | ||||
-rw-r--r-- | git/.gitconfig | 23 | ||||
-rwxr-xr-x | undeploy.sh | 1 |
3 files changed, 25 insertions, 0 deletions
@@ -7,6 +7,7 @@ stow bspwm stow conky stow emacs stow evolution +stow git stow nextcloud stow rofi stow sxhkd diff --git a/git/.gitconfig b/git/.gitconfig new file mode 100644 index 0000000..b5e501d --- /dev/null +++ b/git/.gitconfig @@ -0,0 +1,23 @@ +[user] + email = d@drobilla.net + name = David Robillard +[merge] + conflictstyle = zdiff3 +[pull] + ff = only +[init] + defaultBranch = main +[rerere] + enabled = true + autoupdate = true +[diff] + colorMoved = plain + mnemonicPrefix = true + renames = true + algorithm = histogram +[tag] + sort = version:refname +[branch] + sort = -committerdate +[advice] + mergeConflict = false diff --git a/undeploy.sh b/undeploy.sh index d4874e1..52b4860 100755 --- a/undeploy.sh +++ b/undeploy.sh @@ -7,6 +7,7 @@ rm ~/.config/bspwm rm ~/.conkyrc rm ~/.emacs.d rm ~/.config/evolution +rm ~/.gitconfig rm ~/.config/nextcloud rm ~/.config/rofi rm ~/.config/sxhkd |