dotfiles/.config/nvim/lua/plugins/treesitter.lua
2024-02-22 20:34:18 -08:00

40 lines
587 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
-- general
"comment",
-- git
"diff",
"git_config",
"git_rebase",
"gitattributes",
"gitcommit",
"gitignore",
-- data/conf
"ini",
"ssh_config",
"toml",
-- web
"html",
"css",
"scss",
"javascript",
"jsdoc",
"vue",
-- php
"php",
"phpdoc",
-- shell
"bash",
"fish",
},
},
},
}