1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-08-15 16:38:13 +02:00

nvim/lua/user/plugins/editor/treesitter.lua: switch to tree-sitter-manager

This commit is contained in:
Henrik Hautakoski 2026-07-03 17:24:58 +02:00
parent 665fb375b0
commit e4b7184d75
19 changed files with 88 additions and 140 deletions

View file

@ -1,11 +1,8 @@
local spec = require('user.utils.lang_spec')
return {
{
"nvim-treesitter/nvim-treesitter",
opts = {
install = { "php", "blade", "php_only", "phpdoc", "sql", "csv" },
alias = { phpx = "php_only" }
}
},
spec.treesitter("php", "blade", "php_only", "phpdoc", "sql", "csv"),
spec.treesitter_alias({ phpx = "php_only" }),
{
"windwp/nvim-ts-autotag",
optional = true,