From e17117bef459e9c66ca5f0506306d78599ad7618 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Wed, 6 Mar 2024 08:40:06 -0800 Subject: [PATCH] [vim] Start with all folds open (foldlevel=99) --- config/nvim/lua/configuration.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/nvim/lua/configuration.lua b/config/nvim/lua/configuration.lua index 3d7abcd..ac20607 100644 --- a/config/nvim/lua/configuration.lua +++ b/config/nvim/lua/configuration.lua @@ -18,6 +18,9 @@ opt.splitbelow = true opt.number = true opt.relativenumber = true +-- Start with ~all folds open. +opt.foldlevel = 99 + -- Customize the status bar a bit. Show the ruler, mode, and the command as the -- last line of the screen. opt.ruler = true