dotfiles/nixos/home-manager/programs/emacs/emacs.nix

26 lines
622 B
Nix
Raw Normal View History

2022-12-19 09:09:08 +00:00
{pkgs}: let
2021-05-28 15:58:33 +01:00
myEmacs = pkgs.emacs-nox;
2022-05-28 20:06:00 +01:00
inherit ((pkgs.emacsPackagesFor myEmacs)) emacsWithPackages;
2022-12-19 09:09:08 +00:00
in
emacsWithPackages (epkgs:
(with epkgs.melpaStablePackages; [])
++ (with epkgs.melpaPackages; [
color-theme-sanityinc-solarized
evil
evil-collection
helm
helm-projectile
helm-rg
magit
nix-mode
projectile
xterm-color
])
++ (with epkgs.elpaPackages; [
beacon # ; highlight my cursor when scrolling
nameless # ; hide current package name everywhere in elisp code
])
++ [
pkgs.notmuch # From main packages set
])