24 lines
351 B
VimL
24 lines
351 B
VimL
" Tree-sitter configuration
|
|
lua <<EOF
|
|
require'nvim-treesitter.configs'.setup {
|
|
highlight = {
|
|
enable = true,
|
|
},
|
|
indentation = {
|
|
enable = true,
|
|
},
|
|
ensure_installed = {
|
|
"bash",
|
|
"c",
|
|
"cmake",
|
|
"cpp",
|
|
"fish",
|
|
"lua",
|
|
"rust",
|
|
}
|
|
}
|
|
vim.opt.foldmethod = "expr"
|
|
vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
|
|
|
|
EOF
|