[git] Added delta pager
This commit is contained in:
parent
52adfbe206
commit
c64180df0e
1 changed files with 24 additions and 15 deletions
39
.gitconfig
39
.gitconfig
|
@ -1,25 +1,34 @@
|
||||||
[user]
|
[user]
|
||||||
email = afonso@francof.net
|
email = afonso@francof.net
|
||||||
name = afonso
|
name = afonso
|
||||||
signingkey = ~/.ssh/simple_sk
|
signingkey = ~/.ssh/simple_sk
|
||||||
[includeIf "hasconfig:remote.*.url:https://github.com/**"]
|
[includeIf "hasconfig:remote.*.url:https://github.com/**"]
|
||||||
path = ~/.gitconfig-gh
|
path = ~/.gitconfig-gh
|
||||||
[includeIf "hasconfig:remote.*.url:ssh://git@github.com/**"]
|
[includeIf "hasconfig:remote.*.url:ssh://git@github.com/**"]
|
||||||
path = ~/.gitconfig-gh
|
path = ~/.gitconfig-gh
|
||||||
[filter "lfs"]
|
[filter "lfs"]
|
||||||
process = git-lfs filter-process
|
process = git-lfs filter-process
|
||||||
required = true
|
required = true
|
||||||
clean = git-lfs clean -- %f
|
clean = git-lfs clean -- %f
|
||||||
smudge = git-lfs smudge -- %f
|
smudge = git-lfs smudge -- %f
|
||||||
[core]
|
[core]
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
|
pager = delta
|
||||||
|
[interactive]
|
||||||
|
diffFilter = delta --color-only
|
||||||
|
[delta]
|
||||||
|
navigate = true
|
||||||
|
[merge]
|
||||||
|
conflictstyle = diff3
|
||||||
|
[diff]
|
||||||
|
colorMoved = default
|
||||||
[commit]
|
[commit]
|
||||||
gpgsign = true
|
gpgsign = true
|
||||||
[gpg]
|
[gpg]
|
||||||
format = ssh
|
format = ssh
|
||||||
[tag]
|
[tag]
|
||||||
gpgsign = true
|
gpgsign = true
|
||||||
[pull]
|
[pull]
|
||||||
rebase = false
|
rebase = false
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = main
|
defaultBranch = main
|
||||||
|
|
Loading…
Reference in a new issue