syntagma
syntagma

Reputation: 24344

Get rid of the underline in Vim's fold name

This is my setting for Vim's folding:

hi Folded term=bold ctermfg=White

How do I get rid of the underline?

Upvotes: 3

Views: 391

Answers (1)

Ingo Karkat
Ingo Karkat

Reputation: 172638

For attributes that you don't specify, the :hi command will keep the previous one. So if your colorscheme includes cterm=underline, you need to configure this:

hi Folded term=bold cterm=NONE ctermfg=White

Upvotes: 8

Related Questions