From b998075f2d0492cbf044ef355282345b7d1c1430 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 3 Jun 2022 20:00:30 +0200 Subject: [PATCH] Use play-ground enabled 'tree-sitter' in devShell This is actually quite useful for debugging it turns out :-). --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 238d7cc..abf41a5 100644 --- a/flake.nix +++ b/flake.nix @@ -115,7 +115,7 @@ default = pkgs.mkShell { nativeBuildInputs = with pkgs; [ nodejs - tree-sitter + (tree-sitter.override { webUISupport = true; }) ]; inherit (checks.pre-commit) shellHook;