Initial commit

This commit is contained in:
2025-04-18 12:43:43 -07:00
commit afe167a752
14 changed files with 304 additions and 0 deletions

View File

@ -0,0 +1,19 @@
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 },
}
})
end,
},
}