added better concealed character for folds

This commit is contained in:
aminnairi
2024-01-13 21:40:05 +01:00
parent 0dbef6c637
commit b008ef18e5
@@ -1,5 +1,9 @@
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"
@@ -42,3 +46,5 @@ 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.foldmethod = 'manual'