diff options
| -rw-r--r-- | dots.toml | 4 | ||||
| -rw-r--r-- | git/gitconfig | 16 |
2 files changed, 20 insertions, 0 deletions
@@ -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 |
