diff options
author | listout <listout@protonmail.com> | 2022-08-13 16:12:16 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-09-01 16:26:40 +0530 |
commit | 249a06ebf311ff67bc282af240c14075c59c9659 (patch) | |
tree | 7fcf66838e4f1307e76b6019957ecd9ee1a81157 /lua | |
parent | c013b584e6b9e6986051da246d3face7584d4aa2 (diff) |
nvim: options.lua: set foldenable to false
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'lua')
-rw-r--r-- | lua/core/options.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/core/options.lua b/lua/core/options.lua index 6a5cc30..12609e3 100644 --- a/lua/core/options.lua +++ b/lua/core/options.lua @@ -49,6 +49,7 @@ opt.lazyredraw = true -- Faster scrolling opt.synmaxcol = 240 -- Max column for syntax highlight opt.updatetime = 300 -- ms to wait for trigger an event opt.timeoutlen = 500 -- ms to wait for a mapped sequence to complete. +opt.foldenable = false ----------------------------------------------------------- -- Startup |