dotfiles/.config/nvim/lua/plugins/treesitter.lua

41 lines
587 B
Lua
Raw Normal View History

2024-02-22 19:57:32 -08:00
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",
},
},
},
}