]> git.rmz.io Git - dotfiles.git/blob - git/config
nvim: add vim-symlink and vim-bbye to resolve symlinks
[dotfiles.git] / git / config
1 [user]
2 name = Samir Benmendil
3 email = me@rmz.io
4 [color]
5 branch = auto
6 status = auto
7 ui = auto
8 diff = auto
9 [push]
10 default = current
11 recurseSubmodules = check
12 [diff]
13 tool = vimdiff
14 [diff "gpg"]
15 textconv = gpg --quiet --decrypt --use-agent
16 [color "diff"]
17 new = cyan bold
18 old = red bold
19 meta = green
20 [sendemail]
21 smtpencryption = tls
22 smtpserver = /usr/bin/msmtp
23 smtpuser =
24 [mergetool "fugitive"]
25 cmd = nvim -f -c \"Gdiffsplit!\" \"$MERGED\"
26 [merge]
27 tool = fugitive
28 defaultToUpstream = true
29 conflictstyle = diff3
30 [mergetool]
31 prompt = no
32 [rebase]
33 autostash = true
34 autosquash = true
35 stat = true
36 updateRefs = true
37 rescheduleFailedExec = true
38 [status]
39 submodulesummary = true
40 [rerere]
41 enabled = true
42 [pull]
43 rebase = interactive
44 [branch]
45 autoSetupMerge = inherit
46 sort = -committerdate
47 [branch "master"]
48 rebase = merges
49 [branch "develop"]
50 rebase = merges
51 [commit]
52 verbose = true
53 [alias]
54 remote-to-ssh = "!f(){ local r=$1; git remote set-url $r $(git remote get-url $r | sed -r 's,https?://([^/]+),git@\\1:,'); };f"
55 clean-orig = "!git ls-files -o --exclude-standard | grep '\\.orig$' | xargs -n100 -p rm"
56 [filter "lfs"]
57 clean = git-lfs clean -- %f
58 smudge = git-lfs smudge -- %f
59 process = git-lfs filter-process
60 required = true
61
62 [includeIf "gitdir:~/src/fpp/**"]
63 path = ~/.config/git/fpp.config
64 [credential]
65 helper = cache