dot_config/git/config.tmpl 🔗
@@ -36,7 +36,7 @@
[delta]
line-numbers = true
{{- if eq .theme_variant "dark" }}
- syntax-theme = base16
+ syntax-theme = ansi
{{- end }}
{{- if eq .theme_variant "light" }}
syntax-theme = OneHalfLight
Amolith created
The `base16` syntax theme for `git delta` was causing issues with contrast,
especially on dark terminals. Changed it to `ansi` to improve readability and
ensure better compatibility across different terminal color schemes.
dot_config/git/config.tmpl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -36,7 +36,7 @@
[delta]
line-numbers = true
{{- if eq .theme_variant "dark" }}
- syntax-theme = base16
+ syntax-theme = ansi
{{- end }}
{{- if eq .theme_variant "light" }}
syntax-theme = OneHalfLight