11 lines
252 B
Lua
11 lines
252 B
Lua
|
local function config()
|
||
|
local treesitter_configs = require('nvim-treesitter.configs')
|
||
|
|
||
|
treesitter_configs.setup({
|
||
|
highlight = { enable = true, disable = {} },
|
||
|
indent = { enable = true, disable = { 'html', 'typescript' } },
|
||
|
})
|
||
|
end
|
||
|
|
||
|
return config
|