From 79a2687fcf9170fcc03d30d7ab8af4e94affae8c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 17 Dec 2021 23:31:23 +0000 Subject: [PATCH] nvim: fold everything by default To make it easier to remind myself that folding is a thing, for now I'm going to enable it by default again for all files. --- nvim/.config/nvim/lua/opdavies/vim.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/lua/opdavies/vim.lua b/nvim/.config/nvim/lua/opdavies/vim.lua index ae6e31c..1c58f18 100644 --- a/nvim/.config/nvim/lua/opdavies/vim.lua +++ b/nvim/.config/nvim/lua/opdavies/vim.lua @@ -68,7 +68,7 @@ local function set_vim_o() breakindent = true, expandtab = true, foldlevel = 1, - foldlevelstart = 99, + foldlevelstart = 1, foldmethod = 'indent', formatoptions = 'lm', linebreak = true,