dotfiles/nvim/lua/plugins/treesitter.lua
nirogu edb6f8d5b3
🎉 Create dotfiles repo
Initial dotfiles commit
2025-10-16 19:51:20 -05:00

15 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
},
},
}