about summary refs log tree commit diff
path: root/emacs.nix
blob: ec7da68bbbfe6ee869b14e8f935542727450bdf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Derivation for Emacs configured with the packages that I need:

{ pkgs ? import <nixpkgs> {} }:

let emacsWithPackages = with pkgs; (emacsPackagesNgGen emacs).emacsWithPackages;

# Custom code for packages missing from the current Nix packages.

in emacsWithPackages(epkgs:
  # Actual ELPA packages (the enlightened!)
  (with epkgs.elpaPackages; [
    ace-window
    adjust-parens
    avy
    company
    exwm
    pinentry
    rainbow-mode
    undo-tree
    which-key
  ]) ++

  # Stable packages:
  (with epkgs.melpaStablePackages; [
    browse-kill-ring
    cargo
    dash
    dash-functional
    dockerfile-mode
    erlang
    flycheck
    go-mode
    gruber-darker-theme
    haskell-mode
    helm
    ht
    idle-highlight-mode
    magit
    markdown-mode-plus
    multi-term
    multiple-cursors
    nix-mode
    paredit
    password-store
    racer
    rainbow-delimiters
    rust-mode
    s
    sly
    sly-company
    smart-mode-line
    string-edit
    terraform-mode
    yaml-mode
  ]) ++

  # Bleeding-edge packages:
  (with epkgs.melpaPackages; [
    helm-pass
    pg
    racket-mode
    restclient
    sly-quicklisp
    uuidgen
  ])
)