🧶
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add gitconfig

+43
+43
config/git/gitconfig
··· 1 + [user] 2 + name = Jordi Izquierdo 3 + email = jordi.izquierdo.casares@tutamail.com 4 + 5 + [core] 6 + pager = delta 7 + editor = nvim --wait 8 + hooksPath = .git/hooks 9 + 10 + [pager] 11 + branch = false 12 + 13 + # Manage large files by storing pointers in instead of the actual files 14 + [filter "lfs"] 15 + clean = git-lfs clean -- %f 16 + smudge = git-lfs smudge -- %f 17 + process = git-lfs filter-process 18 + required = true 19 + 20 + # Removes local tracking branches that no longer exist on the remote repository 21 + [fetch] 22 + prune = true 23 + 24 + [pull] 25 + rebase = false 26 + 27 + [push] 28 + autoSetupRemote = true 29 + 30 + [merge] 31 + conflictStyle = zdiff3 32 + 33 + [rebase] 34 + # Interactive rebase display commits like this: 35 + # (Author Name <author@email.org>) Commit message 36 + instructionFormat = (%an <%ae>) %s 37 + 38 + [interactive] 39 + diffFilter = delta --color-only 40 + 41 + [delta] 42 + navigate = true 43 + dark = true