20 lines
374 B
Lua
20 lines
374 B
Lua
-- if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
|
|
|
|
-- Customize Treesitter
|
|
|
|
---@type LazySpec
|
|
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
ensure_installed = {
|
|
"vue",
|
|
"html",
|
|
"css",
|
|
"javascript",
|
|
"typescript",
|
|
"tsx",
|
|
-- add more arguments for adding more treesitter parsers
|
|
},
|
|
},
|
|
}
|