feat: add folding options

This commit is contained in:
Devin Haska 2025-05-27 11:54:47 -07:00
parent e68ebd19a2
commit 85d97efcf5

View file

@ -29,3 +29,16 @@ vim.opt.cmdheight = 2
vim.opt.hlsearch = false vim.opt.hlsearch = false
vim.opt.incsearch = true vim.opt.incsearch = true
vim.opt.fillchars = {
foldopen = "",
foldclose = "",
-- fold = "⸱",
fold = " ",
foldsep = " ",
diff = "",
eob = " ",
}
vim.opt.foldlevel = 99
vim.opt.foldmethod = "indent"