From 1944ca0085a08ade203e355d6e05bb7487928911 Mon Sep 17 00:00:00 2001 From: inkch Date: Wed, 17 Jan 2024 07:44:39 +0900 Subject: [PATCH] git: use tab for indent The command `git config` uses tab. --- dot_config/git/config.tmpl | 84 +++++++++++++++++++------------------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/dot_config/git/config.tmpl b/dot_config/git/config.tmpl index e121594..7d38de3 100644 --- a/dot_config/git/config.tmpl +++ b/dot_config/git/config.tmpl @@ -1,67 +1,67 @@ [user] - name = inkch - email = inkch@posteo.jp + name = inkch + email = inkch@posteo.jp [core] - excludesfile = ~/.config/git/ignore - editor = nvim - pager = delta - autocrlf = false - quotepath = false + excludesfile = ~/.config/git/ignore + editor = nvim + pager = delta + autocrlf = false + quotepath = false [commit] - template = ~/.config/git/commitmsg + template = ~/.config/git/commitmsg [init] - defaultBranch = main + defaultBranch = main [color] - status = auto - branch = auto - ui = auto + status = auto + branch = auto + ui = auto [delta] - line-numbers = true - diff-so-fancy = true - dark = true - navigate = true - syntax-theme = base16 + line-numbers = true + diff-so-fancy = true + dark = true + navigate = true + syntax-theme = base16 [interactive] - diffFilter = delta -n --color-only --diff-so-fancy + diffFilter = delta -n --color-only --diff-so-fancy [diff] - renames = true - colorMoved = default + renames = true + colorMoved = default [merge] - tool = nvimdiff + tool = nvimdiff [mergetool "nvimdiff"] - prompt = false - keepBackup = false - cmd = "nvim -d $LOCAL $MERGED $REMOTE" + prompt = false + keepBackup = false + cmd = "nvim -d $LOCAL $MERGED $REMOTE" [status] - short = true - branch = true + short = true + branch = true [log] - graph = true - decorate = true - oneline = true - all = true + graph = true + decorate = true + oneline = true + all = true [alias] - s = status - fe = fetch - fa = fetch --all - co = checkout - cm = commit -m - cma = commit -am - emp = commit --allow-empty -m - br = branch - bra = branch -a - d = diff - l = log --graph --decorate --oneline --date=iso - delete-merged-branch = !git branch -l --merged main | rg -v \"(HEAD|main|\\*)\" | xargs -I % git branch -d % + s = status + fe = fetch + fa = fetch --all + co = checkout + cm = commit -m + cma = commit -am + emp = commit --allow-empty -m + br = branch + bra = branch -a + d = diff + l = log --graph --decorate --oneline --date=iso + delete-merged-branch = !git branch -l --merged main | rg -v \"(HEAD|main|\\*)\" | xargs -I % git branch -d %