dotfiles

[ACTIVE] managed with chezmoi
git clone git://git.figbert.com/dotfiles.git
Log | Files | Refs

dot_gitconfig.tmpl (547B)


      1 [user]
      2   name = FIGBERT
      3   email = figbert@figbert.com
      4   signingkey = 67F1598D607A844B
      5 [core]
      6   editor = nvim
      7   pager = delta
      8 [commit]
      9   gpgSign = true
     10 [init]
     11   templateDir = ~/.config/git/template/
     12   defaultBranch = main
     13 [pull]
     14   rebase = true
     15 [gpg]
     16   program = gpg{{ if eq .chezmoi.os "linux" }}2{{ end }}
     17 [delta]
     18   line-numbers = true
     19 [credential]
     20   helper = {{ if eq .chezmoi.os "darwin" }}osxkeychain{{ else }}cache{{ end }}
     21 [sendemail]
     22   smtpserver = figbert.com
     23   smtpuser = figbert@figbert.com
     24   smtpencryption = tls
     25   smtpserverport = 587