aboutsummaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/treesitter.lua
blob: 04ba7d85167b1376048c68776104ff733fadcc54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
return {
	{
		"nvim-treesitter/nvim-treesitter",
		build = ":TSUpdate",
		config = function()
			local config = require("nvim-treesitter.configs")
			config.setup({
				ensure_installed = { "lua", "javascript" },
				highlight = { enable = true },
				indent = { enable = true },
			})
		end,
	},
}