Nvim: add treesitter folding
This commit is contained in:
parent
bcbd819cdb
commit
bf0c005444
1 changed files with 7 additions and 0 deletions
|
@ -4,3 +4,10 @@ require'nvim-treesitter.configs'.setup {
|
||||||
incremental_selection = {enable = true},
|
incremental_selection = {enable = true},
|
||||||
context_commentstring = {enable = true}
|
context_commentstring = {enable = true}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
vim.wo.foldmethod = 'expr';
|
||||||
|
vim.wo.foldexpr = 'nvim_treesitter#foldexpr()'
|
||||||
|
vim.wo.foldtext = [[substitute(getline(v:foldstart), '\\t' repeat('\ ',&tabstop),'g').'...'.trim(v:foldend)]]
|
||||||
|
vim.wo.fillchars = 'fold:\\'
|
||||||
|
vim.wo.foldnestmax = 3
|
||||||
|
vim.wo.foldminlines = 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue