first commit

This commit is contained in:
2026-03-12 12:35:37 +05:30
commit 5441420e71
72 changed files with 8407 additions and 0 deletions

View File

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