> Tree-sitter that just works

Hallelujah and thank you, sweet little baby Jesus. Now I can get rid of this bullshit from my dotfiles:

    rm -rf ~/.emacs.d/tree-sitter
    mkdir -p ~/.emacs.d/tree-sitter
    set _plat = windows
    if ( `uname` == Linux ) set _plat = linux
    if ( `uname` == Darwin ) set _plat = apple
    set _arch = x86
    if ( `arch` == arm64) set _arch = aarch64
    gh release -R emacs-tree-sitter/tree-sitter-langs download -p "*${_arch}*${_plat}*"
    tar -C ~/.emacs.d/tree-sitter --transform 's/^\(.*\.\(so\|dylib\|dll\)\)/libtree-sitter-\1/' -xzf tree-sitter-grammars*.tar.gz
    rm tree-sitter-grammars*.tar.gz
That's csh, BTW, just like the Founding Fathers intended.