diff options
author | Daniil Rozanov <dev@rozanov.info> | 2025-03-06 22:17:57 +0400 |
---|---|---|
committer | Daniil Rozanov <dev@rozanov.info> | 2025-03-06 22:17:57 +0400 |
commit | ce92547528742e561c6ef66ac66451738f9363ac (patch) | |
tree | c00bff2542fe81bc811b9d860356360b984e26a7 | |
parent | de67aa7e8c0884810a3399c51b635edc408fac93 (diff) |
-rw-r--r-- | git/.gitconfig | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/git/.gitconfig b/git/.gitconfig index 112f0cf..bd628ff 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -1,9 +1,20 @@ +[core] +editor = nvim + +[color "diff"] +whitespace = red reverse + [user] -email = dev@drozanov.info +email = dev@rozanov.info name = Daniil Rozanov +signingkey = dev@rozanov.info -[core] -editor = nvim +[commit] +gpgsign = true -[color] -ui = true +[tag] +gpgSign = true +[http] +sslCAinfo = /etc/ssl/certs/ca-certificates.crt +[init] +defaultBranch = main |