Here are mine so far:
- alacritty - https://github.com/alacritty/alacritty
- bat - https://github.com/sharkdp/bat
- bottom - https://github.com/ClementTsang/bottom (oops this one is graphical)
- broot - https://github.com/Canop/broot
- coreutils - https://github.com/uutils/coreutils
- diskonaut - https://github.com/imsnif/diskonaut
- delta - https://github.com/dandavison/delta
- du-dust - https://github.com/bootandy/dust
- exa - https://github.com/ogham/exa
- fd - https://github.com/sharkdp/fd
- feroxbuster - https://github.com/epi052/feroxbuster
- helix - https://github.com/helix-editor/helix
- lsd - https://github.com/lsd-rs/lsd
- navi - https://github.com/denisidoro/navi
- onefetch - https://github.com/o2sh/onefetch
- procs - https://github.com/dalance/procs
- ripgrep - https://github.com/BurntSushi/ripgrep
- rustscan - https://github.com/RustScan/RustScan
- sniffglue - https://github.com/kpcyrd/sniffglue
- starship - https://github.com/starship/starship
- t-rec - https://github.com/sassman/t-rec-rs
- trippy - https://github.com/fujiapple852/trippy
- tab - https://github.com/austinjones/tab-rs
- xh - https://github.com/ducaale/xh
- xplr - https://github.com/sayanarijit/xplr
- zellij - https://github.com/zellij-org/zellij
- zoxide - https://github.com/ajeetdsouza/zoxide
From your list, I use
bat
,exa
andrg
.delta (sometimes packaged as
git-delta
) deserves a mention. I use it with this git configuration:[core] # --inspect-raw-lines=false fixes issue where some added lines appear in bold blue without green background # default minus-style is 'normal auto' pager = "delta --inspect-raw-lines=false --minus-style='syntax #400000' --plus-style='syntax #004000' --minus-emph-style='normal #a00000' --plus-emph-style='normal #00a000' --line-buffer-size=48 --max-line-distance=0.8" [interactive] diffFilter = "delta --inspect-raw-lines=false --color-only --minus-style='syntax #400000' --plus-style='syntax #004000' --minus-emph-style='normal #a00000' --plus-emph-style='normal #00a000' --line-buffer-size=48 --max-line-distance=0.8" [delta] navigate = true # use n and N to move between diff sections light = false # set to true if you're in a terminal w/ a light background color (e.g. the default macOS terminal) [merge] conflictstyle = diff3
You know what, when I started the list I had delta but when I searched for it I got a different tool that didn’t look right so I removed it, added this one back. Thanks for the added config!