Cursorline not visible in the Lazy UI? #2001
-
Hello there! Is there any way to get the cursorline highlight to be visible in the Lazy UI ? I've tested with the bare minimum:
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That's because the floating window for Lazy UI uses If you see
You could create an autocmd like vim.api.nvim_create_autocmd("FileType", {
group = vim.api.nvim_create_augroup("lazy_cursorline", {}),
desc = "Lazy Cursorline",
callback = function()
vim.opt_local.cursorline = true
end,
}) |
Beta Was this translation helpful? Give feedback.
That's because the floating window for Lazy UI uses
style = "minimal"
.If you see
:h nvim_open_win()
it mentionsYou could create an autocmd like