implement very basic highlighting

This commit is contained in:
2023-07-07 01:47:46 +00:00
parent 27596798d6
commit c2fcc8b6ee
17 changed files with 87 additions and 20 deletions

View File

@@ -1,10 +1,10 @@
{ pkgs ? import <nixpkgs> { } }:
let
tree-sitter-nixshell = pkgs.callPackage ./. { };
tree-sitter-nix-shell = pkgs.callPackage ./. { };
in
pkgs.mkShell {
inherit (tree-sitter-nixshell) nativeBuildInputs;
inherit (tree-sitter-nix-shell) nativeBuildInputs;
# to manually build, once in this shell, just run
# `tree-sitter generate`
}