dots/users/price/conf/emacs/default.nix
Price Hiller 2af120de1c
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 49s
refactor(hm/price): remove emacs pdf-tools
2024-08-15 21:24:11 -05:00

15 lines
228 B
Nix

{ pkgs, ... }:
{
programs.emacs = {
enable = true;
package = pkgs.emacs-unstable;
extraPackages = (
epkgs:
(with epkgs; [
treesit-grammars.with-all-grammars
vterm
])
);
};
}