first commit
This commit is contained in:
19
nvim/lua/kickstart/plugins/cursorline.lua
Normal file
19
nvim/lua/kickstart/plugins/cursorline.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user