git: Fix diff dark light setting automation
This commit is contained in:
parent
747e9bc2f5
commit
8aec761a20
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@
|
|||
diffword = "!git diff --word-diff=color --word-diff-regex='[0-9A-Za-z_]+'" # word-wise diff, good for prose
|
||||
diffsyn = "!git difftool --tool difftastic" # add syntax-driven diff using treesitter
|
||||
diffside = "!DELTA_FEATURES='+side-by-side' git diff" # add side-by-side diffing
|
||||
delta = "![ $TERM_DARK=false ] && delta --light || delta" # Take care that we always display right color scheme
|
||||
delta = "![ $TERM_DARK = false ] && delta --light || delta" # Take care that we always display right color scheme
|
||||
[commit]
|
||||
gpgsign = true # sign commits as me
|
||||
verbose = true # Always show diff when preparing commit message
|
||||
|
|
Loading…
Reference in a new issue