Emacs with treesit grammars at work

This commit is contained in:
Benson Chu 2024-08-29 15:57:48 -05:00
parent 0c845541e7
commit ea7c2fb9f3

View file

@ -94,11 +94,13 @@
};
emacs = {
package = pkgs.emacs-unstable;
enable = true;
extraPackages = epkgs: with epkgs; [
mu4e
];
package = (
(pkgs.emacsPackagesFor pkgs.emacs-unstable)
.emacsWithPackages (epkgs: with epkgs; [
treesit-grammars.with-all-grammars
mu4e
]));
};
bash.enable = true; # see note on other shells below