clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

adding git-delta

sspaeti 89d46fe2 b39064ad

+9 -2
+1
Brewfile
··· 32 32 brew "direnv" 33 33 brew "fzf" 34 34 brew "gh" 35 + brew "git-delta" 35 36 brew "go" 36 37 brew "helix" 37 38 brew "helm"
+8 -2
git/gitconfig
··· 5 5 user = sspaeti 6 6 [core] 7 7 excludesfile = /Users/sspaeti/.gitignore_global 8 - pager = diff-so-fancy | less --tabs=4 -RFX 8 + pager = delta 9 9 [diff] 10 10 tool = nvimdiff #meld 11 + colorMoved = default 11 12 #nvimdiff 12 13 [difftool] 13 14 prompt = false ··· 59 60 [hub] 60 61 protocol = https 61 62 [interactive] 62 - diffFilter = diff-so-fancy --patch 63 + diffFilter = delta --color-only 64 + [delta] 65 + navigate = true # use n and N to move between diff sections 66 + light = false # set to true if you're in a terminal w/ a light background color (e.g. the default macOS terminal) 67 + [merge] 68 + conflictstyle = diff3 63 69 [color] 64 70 ui = true 65 71 [color "diff-highlight"]