Format plugin configurations

This commit is contained in:
2025-04-18 13:59:06 -07:00
parent 02cba114d8
commit c1e0902f60
5 changed files with 27 additions and 23 deletions

View File

@ -3,17 +3,17 @@ return {
"ya2s/nvim-cursorline",
config = function()
require("nvim-cursorline").setup({
cursorline = {
enable = true,
timeout = 0,
number = false,
},
cursorword = {
enable = true,
min_length = 3,
hl = { underline = true },
}
})
cursorline = {
enable = true,
timeout = 0,
number = false,
},
cursorword = {
enable = true,
min_length = 3,
hl = { underline = true },
},
})
end,
},
}