dots/users/price/conf/emacs/default.nix

15 lines
228 B
Nix
Raw Normal View History

2024-07-09 23:26:57 -05:00
{ pkgs, ... }:
{
programs.emacs = {
enable = true;
package = pkgs.emacs-unstable;
extraPackages = (
epkgs:
(with epkgs; [
treesit-grammars.with-all-grammars
vterm
])
);
};
}