mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
14 lines
270 B
Lua
14 lines
270 B
Lua
|
|
local curline = require('nvim-cursorline')
|
||
|
|
|
||
|
|
curline.setup{
|
||
|
|
cursorline = {
|
||
|
|
enable = true,
|
||
|
|
timeout = 1000,
|
||
|
|
number = false,
|
||
|
|
},
|
||
|
|
cursorword = {
|
||
|
|
enable = true,
|
||
|
|
min_length = 3,
|
||
|
|
hl = { underline = true },
|
||
|
|
}
|
||
|
|
}
|