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

23 lines
577 B
Nix
Raw Normal View History

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