aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/treesitter.lua
blob: 90b57fbdabad0ce2fba0b8bffdc636b79f90bea2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
return {
	"nvim-treesitter/nvim-treesitter",
	branch = "master",
	lazy = false,
	build = ":TSUpdate",
	config = function()
		local config = require("lazy")
		config.setup({
			auto_install = true,
			highlight = { enable = true },
      ensure_installed = { "v", "c", "lua", "vim", "markeown" },
			indent = { enable = true },
		})
	end,
}