-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgitconfig
More file actions
31 lines (31 loc) · 694 Bytes
/
gitconfig
File metadata and controls
31 lines (31 loc) · 694 Bytes
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
# This is Git's per-user configuration file.
[user]
name = Jordan Haine
email = jhaine@securitycompass.com
signingkey = 0CBAF74277601D93
[core]
excludesfile = /home/jhaine/.gitignore_global
editor = nvim
[commit]
gpgsign = true
[submodule]
recurse = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[merge]
tool = fugitive
[mergetool]
; remove all .orig files when using the mergetool
keepBackup = false
[mergetool "fugitive"]
; open neovim and invoke :Git mergetool
cmd = nvim -c \"Git mergetool\"
[pull]
rebase = false
[init]
defaultBranch = master
[jump]
grepCmd = rg --vimgrep --no-heading