10 lines
245 B
Lua
10 lines
245 B
Lua
-- FOLDING
|
|
|
|
-- enable folding
|
|
vim.opt.foldenable = true
|
|
-- open most folds by default (0 to 99)
|
|
vim.opt.foldlevelstart = 10
|
|
-- guard against too many nested folds
|
|
vim.opt.foldnestmax = 10
|
|
-- fold based on filetype
|
|
vim.opt.foldmethod = 'syntax'
|