NeogitOrg / neogit

An interactive and powerful Git interface for Neovim, inspired by Magit
MIT License
3.71k stars 221 forks source link

Add different highlights for Status sections #1255

Closed petobens closed 3 months ago

petobens commented 3 months ago

Hi! AFAICT all sections in the Status window are highlighted the same. I was wondering whether specific highlights could be added. In the image you can see how fugitive does it (i.e untracked in yellow, unstaged in red) which I think is more intuitive/useful. Thanks in advance!

Bonus: can we add an icon symbol to untracked/modified akin to fugitive's ? and M signs?

image

CKolkey commented 3 months ago

Good catch - added that back here: 50ab277 (#978)

You'll need to define the groups yourself to be whichever color you like, but now you can do that easily.

I can do something about the icons too, sure.

CKolkey commented 3 months ago

Ok, with fd63c19287cb275ea38d2c85f41ce712a816c160 you can customize the text for item status :)

petobens commented 3 months ago

Thank you!