feat: update .gitconfig

This commit is contained in:
Daniel Bauer
2025-06-04 09:11:53 +02:00
parent d72d70fca2
commit 20a061820e

View File

@@ -1,21 +1,19 @@
#git config --global rerere.enabled true This is Git's per-user configuration file. #git config --global rerere.enabled true This is Git's per-user configuration file.
[user] [user]
# Please adapt and uncomment the following lines: # Please adapt and uncomment the following lines:
name = daniel name = Daniel Bauer
email = github@dbauer.me email = github@dbauer.me
[pack]
threads = 8
[merge]
tool = kdiff3
[core] [core]
pager = diff-so-fancy | less --tabs=4 -RFX pager = sh -c 'command -v diff-so-fancy >/dev/null && exec diff-so-fancy || less --tabs=4 -RX'
pager = less
autocrlf = input autocrlf = input
attributesFile = /home/dbauer/.gitattributes
[alias] [alias]
co = commit co = commit
ch = checkout ch = checkout
br = branch br = branch
[interactive] [interactive]
diffFilter = diff-so-fancy --patch diffFilter = sh -c 'command -v diff-so-fancy >/dev/null && exec diff-so-fancy --patch || exec cat'
[color] [color]
ui = true ui = true
[color "diff-highlight"] [color "diff-highlight"]
@@ -51,3 +49,9 @@
path = ~/.gitconfig.local path = ~/.gitconfig.local
[pull] [pull]
rebase = false rebase = false
[credential]
helper = store
[gpg]
program = /usr/bin/gpg
[include]
path = ~/.gitconfig.local