Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save alejandro-llanes/d2b632c555269a002199ee57b003306d to your computer and use it in GitHub Desktop.

Select an option

Save alejandro-llanes/d2b632c555269a002199ee57b003306d to your computer and use it in GitHub Desktop.
Install tree-sitter parser
# 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 /usr/lib/
sudo mkdir /usr/share/tree-sitter/queries/kdl
sudo cp queries/* /usr/share/tree-sitter/queries/kdl/
sudo ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment