dotfiles/.config/nvim/lua/plugins/treesitter.lua
SindreKjelsrud a98c7a87f7
new neovim-config w/ AstroNvim
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
2024-10-06 14:53:32 +02: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
},
},
}