From f2dfde23f8157da1532a2b2e236af529fed47713 Mon Sep 17 00:00:00 2001 From: Matt Singleton Date: Thu, 11 Apr 2024 16:21:15 -0500 Subject: replace janky deploy script with stow and make re-orgs all the console oriented dotfiles to be stowable makefile to deploy everything move from vimplug to native vim packages cleanup script for blowing away old symlinks --- stow/git/.config/git/config | 49 +++++++++++++++++++++++++++++++++++++++++++++ stow/git/.config/git/ignore | 11 ++++++++++ 2 files changed, 60 insertions(+) create mode 100644 stow/git/.config/git/config create mode 100644 stow/git/.config/git/ignore (limited to 'stow/git') diff --git a/stow/git/.config/git/config b/stow/git/.config/git/config new file mode 100644 index 0000000..71bf668 --- /dev/null +++ b/stow/git/.config/git/config @@ -0,0 +1,49 @@ +[user] + name = Matt Singleton + email = matt@xcolour.net + +[alias] + st = status + ci = commit + br = branch + co = checkout + df = diff + lg = log -p + +[core] + whitespace = trailing-space,space-before-tab,cr-at-eol + editor = vim + autocrlf = input + excludesfile = ~/.config/git/ignore + pager = less -+$LESS -RSX + +[push] + default = nothing + +[color] + ui = true + +[mergetool] + keepTemporaries = false + prompt = false + +[mergetool "vimdiff"] + layout = "LOCAL,BASE,REMOTE / MERGED + BASE,LOCAL + BASE,REMOTE" + +[merge] + tool = vimdiff + conflictstyle = zdiff3 + +[diff] + tool = vimdiff + colorMoved = default + algorithm = histogram + +[init] + defaultBranch = main + +[pull] + ff = only + +[include] + path = config-local diff --git a/stow/git/.config/git/ignore b/stow/git/.config/git/ignore new file mode 100644 index 0000000..57dd8e6 --- /dev/null +++ b/stow/git/.config/git/ignore @@ -0,0 +1,11 @@ +*.class +*.pyc +*.swo +*.swp +.svn +.swo +*#* +# +.#* +doc/tags +.DS_STORE -- cgit v1.2.3