Created
September 1, 2026 20:28
-
-
Save alejandro-llanes/8bb72500fc1ebe43be3ea0cb0174e275 to your computer and use it in GitHub Desktop.
Local installation of tree-sitter parser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install tree-sitter parser that will be loaded by maxgus editor. | |
| git clone --depth=1 https://github.com/tree-sitter-grammars/tree-sitter-kdl.git | |
| cd tree-sitter-kdl | |
| gcc -shared -fPIC -Isrc src/parser.c src/scanner.c -o libtree-sitter-kdl.so | |
| sudo install -m 755 libtree-sitter-kdl.so ~/.local/share/maxgus/grammars/ | |
| sudo mkdir ~/.local/share/maxgus/grammars/kdl | |
| sudo cp queries/* ~/.local/share/maxgus/grammars/kdl/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment