From 2f69b955d210ae016b0555ffb6ecf91bde1d0f38 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 11 Jan 2024 17:41:11 +0100 Subject: [PATCH] git: Fix deprecated subsection config syntax Apparently marking subsections like `[section.subsection]` (toml-like) is deprecated in the configuration. This commit fixes this by using the recommended `[section "subsection"]` syntax. See: https://git-scm.com/docs/git-config#_syntax --- git/.config/git/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git/.config/git/config b/git/.config/git/config index 19ae355..013cf64 100644 --- a/git/.config/git/config +++ b/git/.config/git/config @@ -41,14 +41,14 @@ prompt = false [difftool "difftastic"] cmd = difft "$LOCAL" "$REMOTE" -[color.diff] +[color "diff"] meta = "9" frag = "magenta bold" commit = "yellow bold" old = "red bold" new = "green bold" whitespace = "red reverse" -[color.diff-highlight] +[color "diff-highlight"] oldNormal = "red bold" oldHighlight = "red bold 52" newNormal = "green bold"