diff --git a/lua/options.lua b/lua/options.lua index 4229058..4fa4f82 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -84,9 +84,12 @@ opt('errorbells', false) -- Always use system clipboard opt('clipboard', 'unnamedplus') +-- Folding options +opt('foldmethod', 'indent') +opt('foldlevelstart', 99) + -- Identation/Tab settings local tab_size = 2 -opt('foldmethod', 'indent') opt('expandtab', false, buffer) opt('smartindent', true, buffer) opt('shiftwidth', tab_size, buffer)