switched to lazy.nvim and clean up a bit

This commit is contained in:
iris committed 2023-02-16 01:24:40 -05:00
1 parent 72bf7e727a
commit 11bb713b60
19 files changed
+290 -331

No files matched your search

+7 -7
View File
@@ -6,14 +6,14 @@ local gbhl = function(name, color)
end
-- highlight extra white space with red
hl('ExtraWhitespace', { ctermbg = 'red', bg = '#ff8888' })
hl("ExtraWhitespace", { ctermbg = "red", bg = "#ff8888" })
vim.cmd [[match ExtraWhitespace /\s\+$/]]
-- make background transparent
gbhl('Normal', 'none')
gbhl('EndOfBuffer', 'none')
gbhl('SignColumn', 'none')
gbhl('NeoTreeNormal', 'none')
gbhl('NeoTreeNormalNC', 'none')
gbhl('NeoTreeEndOfBuffer', 'none')
gbhl("Normal", "none")
gbhl("EndOfBuffer", "none")
gbhl("SignColumn", "none")
gbhl("NeoTreeNormal", "none")
gbhl("NeoTreeNormalNC", "none")
gbhl("NeoTreeEndOfBuffer", "none")