aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Bossing <info@maxbossing.de>2025-08-12 16:17:13 +0200
committerMax Bossing <info@maxbossing.de>2025-08-12 16:17:13 +0200
commitb8767cdbdd27107d7ec9ede5c05a27c4182d89dc (patch)
treebb69521941a75dccebc934118ef0b935fad8cb01
parent870b5d5d220e8f0f6174dd62672fa93cd5e5ba97 (diff)
feat(git): git configHEADmaster
-rw-r--r--dots.toml4
-rw-r--r--git/gitconfig16
2 files changed, 20 insertions, 0 deletions
diff --git a/dots.toml b/dots.toml
index 42203f1..9de5abe 100644
--- a/dots.toml
+++ b/dots.toml
@@ -39,3 +39,7 @@ dest = ".tmux.conf"
[[dot]]
src = "starship/starship.toml"
dest = ".config/starship.toml"
+
+[[dot]]
+src = "git/gitconfig"
+dest = ".gitconfig"
diff --git a/git/gitconfig b/git/gitconfig
new file mode 100644
index 0000000..cdc2395
--- /dev/null
+++ b/git/gitconfig
@@ -0,0 +1,16 @@
+[git]
+ credentialhelper = store
+[credential]
+ helper = store
+[user]
+ email = info@maxbossing.de
+ name = Max Bossing
+ signingkey = E2E95E80A0C1217E
+[init]
+ defaultBranch = master
+[core]
+ eol = lf
+ autocrlf = false
+ editor = nvim
+[checkout]
+ defaultRemote = origin