17 lines
498 B
Lua
17 lines
498 B
Lua
-- Treesitter plugin.
|
|
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
-- Initialise treesitter and set it up and stuff.
|
|
-- Go to `https://github.com/nvim-treesitter/nvim-treesitter` to find languages.
|
|
local config = require("nvim-treesitter.configs")
|
|
config.setup({
|
|
auto_install = true,
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
})
|
|
end
|
|
}
|
|
|