mvllow / modes.nvim

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

Add `opacity` per mode #61

Closed uwla closed 3 weeks ago

uwla commented 3 weeks ago

Set opacity of the cursor line based per mode. For example. to set a higher opacity in visual mode, and lower on other modes

fitrh commented 3 weeks ago

You can already do that by setting line_opacity to a table

line_opacity = {
    copy = 0.15,
    delete = 0.15,
    insert = 0,
    visual = 0.25,
}