nvim-config/lua/configs/treesitter.lua
2024-01-04 16:10:59 -08:00

19 lines
317 B
Lua

local M = {}
function M.config()
local present, treesitter_configs = pcall(require, 'nvim-treesitter.configs')
if not present then
return
end
treesitter_configs.setup({
highlight = {
enable = true,
disable = {},
},
indent = { enable = true, disable = { 'html', 'typescript' } },
})
end
return M