summaryrefslogtreecommitdiff
path: root/gitconfig
blob: 38a9cef2e3e4a861dc3604750460c202d00bfeef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[includeIf "gitdir:~/git/"]
  path = ~/.gitconfig_personal
[includeIf "gitdir:~/work/"]
  path = ~/.gitconfig_work
[include]
  path = ~/.gitconfig_sensitive

[core]
  excludesfile = ~/.gitignore_global
  attributesfile = ~/.gitattributes
  pager = bat
[merge]
  tool = vimdiff
  conflictstyle = diff3
[pull]
  rebase = true
  ff = only
[mergetool]
  path = nvim
[color]
  ui = auto
[credential]
  helper = store
[filter "lfs"]
  clean = git-lfs clean -- %f
  smudge = git-lfs smudge -- %f
  process = git-lfs filter-process
  required = true
[commit]
  gpgSign = true
  verbose = true
[gpg]
  program = /usr/local/MacGPG2/bin/gpg2

[user]
  signingkey = EA91B002A8F4238E

[diff "rspec"]
  xfuncname = "^[ \t]*((RSpec|describe|context|it|before|after|around|feature|scenario)[ \t].*)$"

[sendemail]
  smtpencryption = tls
  smtpserver = smtp.fastmail.com
  smtpuser = nick@nv.delivery
  smtpserverport = 587