diff --git a/nvim/lua/user/plugins/editor/treesitter.lua b/nvim/lua/user/plugins/editor/treesitter.lua index 2284895..0df2b04 100644 --- a/nvim/lua/user/plugins/editor/treesitter.lua +++ b/nvim/lua/user/plugins/editor/treesitter.lua @@ -50,15 +50,6 @@ return { config = function(_, opts) local parser_config = require("nvim-treesitter.parsers").get_parser_configs() - parser_config.blade = { - install_info = { - url = "https://github.com/EmranMR/tree-sitter-blade", - branch = "main", - files = { "src/parser.c" }, - }, - filetype = "blade", - } - parser_config.dotenv = { install_info = { url = "https://github.com/pnx/tree-sitter-dotenv", diff --git a/nvim/lua/user/plugins/lang/php.lua b/nvim/lua/user/plugins/lang/php.lua index 39c674f..471af86 100644 --- a/nvim/lua/user/plugins/lang/php.lua +++ b/nvim/lua/user/plugins/lang/php.lua @@ -2,7 +2,7 @@ return { { "nvim-treesitter/nvim-treesitter", opts = { - ensure_installed = { "php", "php_only", "phpdoc", "sql", "csv" } + ensure_installed = { "php", "blade", "php_only", "phpdoc", "sql", "csv" } } }, {