feat: add folding options
This commit is contained in:
parent
885cddefa7
commit
34e6fe5486
1 changed files with 13 additions and 0 deletions
|
@ -29,3 +29,16 @@ vim.opt.cmdheight = 2
|
|||
|
||||
vim.opt.hlsearch = false
|
||||
vim.opt.incsearch = true
|
||||
|
||||
vim.opt.fillchars = {
|
||||
foldopen = "",
|
||||
foldclose = "",
|
||||
-- fold = "⸱",
|
||||
fold = " ",
|
||||
foldsep = " ",
|
||||
diff = "╱",
|
||||
eob = " ",
|
||||
}
|
||||
|
||||
vim.opt.foldlevel = 99
|
||||
vim.opt.foldmethod = "indent"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue