updated the options for better folds

This commit is contained in:
aminnairi
2024-01-13 21:46:57 +01:00
parent b008ef18e5
commit a4757eea3c
@@ -1,9 +1,5 @@
local opt = vim.opt local opt = vim.opt
function GetFoldText()
return ''
end
opt.autoindent = true opt.autoindent = true
opt.autoread = true opt.autoread = true
opt.backspace = "indent,eol,start" opt.backspace = "indent,eol,start"
@@ -46,5 +42,4 @@ opt.signcolumn = "yes"
opt.splitright = true opt.splitright = true
opt.splitbelow = true opt.splitbelow = true
opt.conceallevel = 3 opt.conceallevel = 3
opt.foldtext = "v:GetFoldText()" opt.foldtext = ""
opt.foldmethod = 'manual'