all repos — nixfiles @ 9b042903140cf9fabb8ab0fa0e24b16202985ccf

System and user configuration, managed by nix and home-manager

python: add tree-sitter grammar for emacs

Alan Pearce
commit

9b042903140cf9fabb8ab0fa0e24b16202985ccf

parent

1a9536b27edae08935de8275838c4e09d920cd30

1 file changed, 5 insertions(+), 0 deletions(-)

changed files
M user/settings/development/python.nixuser/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 + ])) + ]); }