From 5ebecc1d4b05b625803e1afe5034fe46437af662 Mon Sep 17 00:00:00 2001 From: kj Date: Wed, 27 Nov 2024 19:05:11 -0400 Subject: [PATCH] Add new treesit parser: jsdoc and phpdoc. --- configs/init-packages.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/init-packages.el b/configs/init-packages.el index 49a965d..a9bcaf4 100644 --- a/configs/init-packages.el +++ b/configs/init-packages.el @@ -390,12 +390,14 @@ (html . ("https://github.com/tree-sitter/tree-sitter-html")) (java . ("https://github.com/tree-sitter/tree-sitter-java")) (javascript . ("https://github.com/tree-sitter/tree-sitter-javascript")) + (jsdoc . ("https://github.com/tree-sitter/tree-sitter-jsdoc")) (json . ("https://github.com/tree-sitter/tree-sitter-json")) (julia . ("https://github.com/tree-sitter/tree-sitter-julia")) (lua . ("https://github.com/Azganoth/tree-sitter-lua")) (make . ("https://github.com/alemuller/tree-sitter-make")) (python . ("https://github.com/tree-sitter/tree-sitter-python")) (php . ("https://github.com/tree-sitter/tree-sitter-php" "master" "php/src")) + (phpdoc . ("https://github.com/claytonrcarter/tree-sitter-phpdoc")) (ruby . ("https://github.com/tree-sitter/tree-sitter-ruby")) (rust . ("https://github.com/tree-sitter/tree-sitter-rust")) (sql . ("https://github.com/m-novikov/tree-sitter-sql"))