27 lines
443 B
Lua
27 lines
443 B
Lua
plugin({
|
|
"nvim-treesitter/nvim-treesitter",
|
|
branch = "master",
|
|
lazy = false,
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
require("nvim-treesitter.configs").setup({
|
|
ensure_installed = {
|
|
"elixir",
|
|
"eex",
|
|
"heex",
|
|
"json",
|
|
"javascript",
|
|
"css",
|
|
"scss",
|
|
"lua",
|
|
"rust",
|
|
"python",
|
|
"markdown",
|
|
"markdown_inline",
|
|
},
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
})
|
|
end,
|
|
})
|