feat(neovim): use treesitter for folding

This commit is contained in:
Michael Mandl 2022-08-22 07:56:56 +02:00
parent 9e422fd019
commit 17c0ff1986
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7

View file

@ -34,6 +34,11 @@ vim.opt.inccommand = "split"
-- completion
vim.opt.completeopt = "menu,menuone,noselect"
-- folding
vim.opt.foldmethod = "expr"
vim.opt.foldexpr = 'nvim_treesitter#foldexpr()'
vim.opt.foldlevelstart = 99
-- set cursorline in active window
vim.cmd([[
augroup CursorLine
@ -51,4 +56,3 @@ vim.cmd([[
autocmd TermOpen * setlocal nonumber norelativenumber
augroup END
]])