chore(nvim): turn of cursorline

This commit is contained in:
Stefan Imhoff
2023-08-01 13:10:44 +02:00
parent 82869122e5
commit 94b96865b4
3 changed files with 3 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ vim.opt.autowrite = true
vim.opt.backspace = { "indent", "eol", "start" } -- Intuitive backspacing
vim.opt.copyindent = true
vim.opt.foldlevel = 2
vim.opt.cursorline = false
vim.opt.foldlevelstart = 99
vim.opt.foldmethod = "indent"
vim.opt.foldnestmax = 10

View File

@@ -6,7 +6,7 @@ return {
config = function()
require("nvim-cursorline").setup({
cursorline = {
enable = true,
enable = false,
timeout = 1000,
number = false,
},