17 lines
499 B
Nix
17 lines
499 B
Nix
{ pkgs }:
|
|
let
|
|
myEmacs = pkgs.emacs-nox;
|
|
inherit ((pkgs.emacsPackagesFor myEmacs)) emacsWithPackages;
|
|
in emacsWithPackages (epkgs:
|
|
(with epkgs.melpaStablePackages; [
|
|
magit
|
|
solarized-theme
|
|
evil
|
|
evil-collection
|
|
]) ++ (with epkgs.melpaPackages; [ xterm-color nix-mode ])
|
|
++ (with epkgs.elpaPackages; [
|
|
beacon # ; highlight my cursor when scrolling
|
|
nameless # ; hide current package name everywhere in elisp code
|
|
]) ++ [
|
|
pkgs.notmuch # From main packages set
|
|
])
|