1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

nvim: treesitter: move autotag config to lang files.

This commit is contained in:
Henrik Hautakoski 2024-09-06 12:35:39 +02:00
parent 5e762b4346
commit c5e788a3f1
6 changed files with 66 additions and 20 deletions

View file

@ -16,6 +16,16 @@ return {
ensure_installed = { "php", "phpdoc" }
}
},
{
"windwp/nvim-ts-autotag",
optional = true,
opts = {
filetypes = {
'php',
'blade',
}
}
},
{
"neovim/nvim-lspconfig",
ft = { "php" },
@ -23,6 +33,21 @@ return {
servers = lspservers
},
},
{
"nvim-neotest/neotest",
optional = true,
ft = { "php" },
dependencies = {
"olimorris/neotest-phpunit",
'V13Axel/neotest-pest',
},
opts = {
adapters = {
"neotest-phpunit",
"neotest-pest",
}
},
},
{
"adalessa/laravel.nvim",
dependencies = {