fix(nvim): remove cursor line and word in transparent mode

This commit is contained in:
Stefan Imhoff
2022-12-25 12:34:39 +01:00
parent e9de546afa
commit 3384719f2d
2 changed files with 3 additions and 1 deletions

View File

@@ -69,6 +69,8 @@ require("transparent").setup({
"Normal",
"TelescopeBorder",
"FoldColumn",
"CursorLine",
"CursorWord",
},
exclude = {}, -- table: groups you don't want to clear
})

View File

@@ -7,7 +7,7 @@ local options = {
completeopt = { "menu", "menuone", "preview" },
confirm = true,
copyindent = true,
cursorline = true,
cursorline = false,
expandtab = true,
foldlevel = 2,
foldlevelstart = 99,