kickstart.nvim/lua/custom/plugins/cursorline.lua

16 lines
245 B
Lua

return {
'yamatsum/nvim-cursorline',
opts = {
cursorline = {
enable = true,
timeout = 0,
number = false,
},
cursorword = {
enable = true,
min_length = 3,
hl = { underline = true },
}
}
}