python: add tree-sitter grammar for emacs
1 file changed, 5 insertions(+), 0 deletions(-)
changed files
M user/settings/development/python.nix → user/settings/development/python.nix
@@ -5,4 +5,9 @@ home.packages = with pkgs; [ ty uv ]; + programs.emacs.extraPackages = epkgs: (with epkgs; [ + (treesit-grammars.with-grammars (grammars: with grammars; [ + tree-sitter-python + ])) + ]); }