mvllow / modes.nvim

Prismatic line decorations for the adventurous vim user
550 stars 13 forks source link

Normal mode doesn't cover the signcolumn #43

Closed mortymacs closed 1 year ago

mortymacs commented 1 year ago

Hi,

It seems the normal mode doesn't cover the signcolumn:

image

While the insert mode covers: image

Do you have any idea how can I fix it?

Nvim: v0.9.1 Config: require('modes').setup()

fitrh commented 1 year ago

We don't handle highlights in normal mode, you can try link the CursorLineSign group to CursorLine if you want it to behave like insert mode, or you can set Modes{Mode}CursorLineSign if you want otherwise, where {Mode} is Insert, Delete, Copy and Visual

mortymacs commented 1 year ago

Thank you!