13 lines
299 B
Lua
13 lines
299 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
config = function()
|
|
require("nvim-treesitter.configs").setup({
|
|
ensure_installed = {
|
|
"lua",
|
|
},
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
})
|
|
end,
|
|
}
|