feat(neovim): use treesitter for folding
This commit is contained in:
parent
9e422fd019
commit
17c0ff1986
@ -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
|
||||
]])
|
||||
|
||||
|
Reference in New Issue
Block a user