20 lines
292 B
Lua
20 lines
292 B
Lua
|
-- vim: ft=lua
|
||
|
|
||
|
local treesitter = require('nvim-treesitter.configs')
|
||
|
|
||
|
treesitter.setup({
|
||
|
ensure_installed = 'maintained',
|
||
|
autopairs = {
|
||
|
enable = true
|
||
|
},
|
||
|
highlight = {
|
||
|
enable = true
|
||
|
},
|
||
|
incremental_selection = {
|
||
|
enable = true
|
||
|
},
|
||
|
indent = {
|
||
|
enable = true
|
||
|
}
|
||
|
})
|