17 lines
317 B
Lua
17 lines
317 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 = {
|
||
|
"lua",
|
||
|
"vim",
|
||
|
"pkl",
|
||
|
-- add more arguments for adding more treesitter parsers
|
||
|
},
|
||
|
},
|
||
|
}
|