From d9e11f1a2291f252efb1bc794c39a8b2c0b93ffe Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Tue, 16 May 2023 18:34:48 +0200 Subject: [PATCH] Switch to treesit-grammars emacs package --- modules/home-base.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/modules/home-base.nix b/modules/home-base.nix index 413b448..343a039 100644 --- a/modules/home-base.nix +++ b/modules/home-base.nix @@ -369,11 +369,13 @@ # Xaw3d = pkgs.xorg.libXaw3d; # # lucid -> lucid withPgtk = true; - treeSitterPlugins = pkgs.tree-sitter.allGrammars; } ).overrideAttrs(old: { #dontStrip = true; separateDebugInfo = true; + passthru = old.passthru // { + treeSitter = true; + }; }))).emacsWithPackages; in emacsWithPackages (epkgs: (with epkgs.melpaStablePackages; [ @@ -388,7 +390,9 @@ vterm ]) ++ (with epkgs.elpaPackages; [ jinx - ]) ++ [ + ]) ++ (with epkgs.manualPackages; [ + treesit-grammars.with-all-grammars + ]) ++[ pkgs.notmuch # From main packages set ]); };