Enable more treesitter features.
This commit is contained in:
parent
13f10fa197
commit
9e9604e8c8
1 changed files with 13 additions and 1 deletions
|
|
@ -7,5 +7,17 @@ require('nvim-treesitter.configs').setup({
|
|||
auto_install = true,
|
||||
|
||||
-- enable highlight
|
||||
highlight = {enable = true}
|
||||
highlight = { enable = true },
|
||||
|
||||
-- enable indentation
|
||||
indent = {
|
||||
enable = true,
|
||||
disable = {},
|
||||
},
|
||||
|
||||
-- enable autotag
|
||||
autotag = {
|
||||
enable = true,
|
||||
},
|
||||
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue