Dotfiles/site-modules/core/templates/git/gitconfig.erb
Ade Attwood 67f15d126d chore(pp): go dark mode
Really need to find a way to switch between light and dark mode.
2022-10-01 11:42:10 +01:00

39 lines
730 B
Text

<%- $file = __FILE__ -%>
<%- $comment = '#' -%>
<%= scope.call_function('template', ["core/header.erb"]) %>
[user]
email = <%= scope.call_function('lookup', ["email"]) %>
name = <%= scope.call_function('lookup', ["user_name"]) %>
[core]
editor = nvim
autocrlf = input
[merge]
conflictstyle = diff3
[rerere]
enabled = true
[push]
default = current
[pager]
diff = delta
log = delta
reflog = delta
show = delta
[interactive]
diffFilter = delta --color-only
[delta]
line-numbers = true
navigate = true
hunk-header-style = raw
hunk-header-decoration-style = ul
file-modified-label = "modified:"
file-removed-label = "removed:"
file-added-label = "added:"
file-renamed-label = "renamed:"