gen740 / SmoothCursor.nvim

MIT License
342 stars 13 forks source link

How to disable it on popup window? like lsp hover? #51

Closed niksingh710 closed 6 months ago

gen740 commented 6 months ago

There is an option called disable_float_win. https://github.com/gen740/SmoothCursor.nvim/blob/cc8780622a7b7c328f774762fa2d97d9f83be828/doc/smoothcursor.txt#L83 Setting this to true should meet your need!

example:

require('smoothcursor').setup {
  disable_float_win = true
 }
niksingh710 commented 6 months ago

Thanks mate