13 lines
273 B
Lua
13 lines
273 B
Lua
-- English comments only.
|
|
|
|
local ok, configs = pcall(require, "nvim-treesitter.configs")
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
configs.setup({
|
|
ensure_installed = { "lua", "vim", "vimdoc", "rust", "toml", "json" },
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
})
|