mirror of
https://github.com/zhenyan121/dotfiles.git
synced 2026-04-10 06:24:08 +08:00
16 lines
304 B
Lua
16 lines
304 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",
|
|
-- add more arguments for adding more treesitter parsers
|
|
},
|
|
},
|
|
}
|