Iwakura/modules/emacs/overlay.nix

21 lines
450 B
Nix
Raw Normal View History

2021-05-27 22:10:55 -04:00
final: prev:
let
myEmacs = prev.emacs;
emacsWithPackages = (prev.emacsPackagesGen myEmacs).emacsWithPackages;
in {
emacs = emacsWithPackages (epkgs:
(with epkgs.melpaStablePackages; [
magit
2021-05-31 07:14:29 -04:00
evil
nix-mode
rainbow-delimiters
paredit
evil-surround
evil-textobj-anyblock
2021-05-27 22:10:55 -04:00
]) ++ (with epkgs.melpaPackages; [
2021-05-31 07:14:29 -04:00
racket-mode
2021-05-27 22:10:55 -04:00
]) ++ (with epkgs.elpaPackages; [
2021-05-31 07:14:29 -04:00
]) ++ (with final; [
]));
2021-05-27 22:10:55 -04:00
}