DEV Community

Discussion on: My Terminal Setup

Collapse
 
jef profile image
Jef LeCompte • Edited

Had no idea about bat and exa. I also didn't know about the git aliases; very cool. Thank you so much!

I'd also like to add that's cool is Nerd Font. You may already know this, but they also have tons of packed icons that render powerlevel10k properly. Tons of options outside of Meslo.

I use prezto with history substring search plugin (and many more), so that works pretty well for me instead of the fzf package. But this is also a great tool!

I also have a very similar branch deletion tool. Great minds think alike! 😂

git fetch --all --prune --tags --force
git branch --verbose | grep "\[gone\]" | awk '{print $1}' | xargs git branch --delete --force
git pull

Great article, thanks for sharing.