aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/overlays/kookie/emacs/default.nix
blob: be3a634fe47ae79bbe905a063ecc7d65ea97cb2f (plain)
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
{ stdenv, lib, pkgs, ... } @ args:

with (import ./builder.nix args);
pkgs.emacsWithPackages (epkgs:
  let
    include = path: (import path { inherit buildModule pkgs epkgs; });
    modules = [ ./base ./move-lines ./theme ./rust ];
    kookie-config = bootstrap (map (p: include p) modules);
  in [
    kookie-config
  ])




  
  # Language support
  # fish-mode
  # lsp-mode
  # markdown-mode
  # nim-mode
  # nix-mode
  # protobuf-mode
  # python-mode
  # rust-mode

  # color-identifiers-mode
  # color-theme-sanityinc-tomorrow
  # company
  # company-lsp
  # direnv
  # fzf
  # ido-vertical-mode
  # ledger-mode
  # lsp-ui
  # magit
  # monokai-theme
  # multiple-cursors
  # notmuch
  # org
  # protobuf-mode
  # scad-mode
  # smex
  # sublimity
  # treemacs
  # undo-tree
  # visual-fill-column
  # which-key
  # yasnippet
  # ]))