From 3747e19f3ab82bf8b6fa323ca02529aa267894f5 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 6 Sep 2024 12:50:19 +0200 Subject: [PATCH] nvim: lang: php: add php_only and blade to treesitter --- nvim/lua/user/plugins/lang/php.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/user/plugins/lang/php.lua b/nvim/lua/user/plugins/lang/php.lua index 320516e..86c7b33 100644 --- a/nvim/lua/user/plugins/lang/php.lua +++ b/nvim/lua/user/plugins/lang/php.lua @@ -13,7 +13,7 @@ return { { "nvim-treesitter/nvim-treesitter", opts = { - ensure_installed = { "php", "phpdoc" } + ensure_installed = { "php", "php_only", "phpdoc", "blade" } } }, {