added folding

This commit is contained in:
Bryan Ramos 2023-04-29 17:19:58 -04:00
parent b1c78e2ca6
commit 8ab516982b

View file

@ -15,6 +15,10 @@
vim.opt.expandtab = true vim.opt.expandtab = true
vim.opt.tabstop = 2 vim.opt.tabstop = 2
-- Folding
vim.o.foldmethod = "indent"
vim.o.foldlevelstart = 99
-- Init Snippets -- Init Snippets
vim.g.snipMate = { snippet_version = 1 } vim.g.snipMate = { snippet_version = 1 }