Add Config Files
This commit is contained in:
parent
ade387bdb6
commit
f071a73fdb
520 changed files with 45353 additions and 1 deletions
18
.config/nvim/lua/plugins/cursorline.lua
Normal file
18
.config/nvim/lua/plugins/cursorline.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
return {
|
||||
"yamatsum/nvim-cursorline",
|
||||
lazy = true,
|
||||
config = function()
|
||||
require("nvim-cursorline").setup({
|
||||
cursorline = {
|
||||
enable = true,
|
||||
timeout = 1000,
|
||||
number = false,
|
||||
},
|
||||
cursorword = {
|
||||
enable = true,
|
||||
min_length = 3,
|
||||
hl = { underline = true },
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue