From cff3a5e70ac20243a29f6210af702e0d51366e15 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Thu, 9 Dec 2021 01:16:25 +0100 Subject: [PATCH] Improve docstring about foldlevel option --- home/.config/nvim/lua/core/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/.config/nvim/lua/core/options.lua b/home/.config/nvim/lua/core/options.lua index 58a7be8..6f31346 100644 --- a/home/.config/nvim/lua/core/options.lua +++ b/home/.config/nvim/lua/core/options.lua @@ -16,7 +16,7 @@ o.shiftround = true -- Always round indent to multiple of shiftwidth -- Folding o.foldmethod = "indent" -- Use indent to determine the fold levels o.foldnestmax = 8 -- Only fold up to given amount of levels -o.foldlevel = 2 -- Set initial fold level +o.foldlevel = 2 -- Set initial fold level (don't fold first 2 levels) o.foldenable = false -- Hide all folds by default -- Split order