]> git.rmz.io Git - dotfiles.git/blob - git/config
nvim: add FPP copyright snippet
[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 = vim -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 [status]
37 submodulesummary = true
38 [rerere]
39 enabled = true
40 [pull]
41 rebase = interactive
42 [branch "master"]
43 rebase = merges
44 [branch "develop"]
45 rebase = merges
46 [commit]
47 verbose = true
48 [alias]
49 remote-to-ssh = "!f(){ local r=$1; git remote set-url $r $(git remote get-url $r | sed -r 's,https?://([^/]+),git@\\1:,'); };f"
50 clean-orig = "!git ls-files -o --exclude-standard | grep '\\.orig$' | xargs -n100 -p rm"
51 [filter "lfs"]
52 clean = git-lfs clean -- %f
53 smudge = git-lfs smudge -- %f
54 process = git-lfs filter-process
55 required = true
56
57 [includeIf "gitdir:~/src/fpp/**"]
58 path = ~/.config/git/fpp.config
59 [credential]
60 helper = cache