feat(nvim): better fold icons

This commit is contained in:
Price Hiller 2023-02-03 17:39:37 -06:00
parent 6a845918ce
commit 2d41c4fce4

View File

@ -63,7 +63,7 @@ M.setup = function()
-- Better folding
opt.foldexpr = "nvim_treesitter#foldexpr()"
opt.foldmethod = "expr"
opt.fillchars = { fold = " " }
opt.fillchars = { eob = " ", fold = " ", foldopen = "", foldsep = " ", foldclose = "" }
opt.foldlevel = 20
vim.wo.foldexpr = "nvim_treesitter#foldexpr()"
vim.wo.foldmethod = "expr"