2019-12-14 13:47:07 +01:00
|
|
|
# This file assembles a preconfigured Emacs with the dependencies that
|
|
|
|
# I need.
|
2018-10-10 11:21:15 +02:00
|
|
|
#
|
2019-12-14 13:47:07 +01:00
|
|
|
# It can either build Emacs itself (`-A complete`) or just the
|
|
|
|
# configuration (`-A config`). If the configuration is built
|
|
|
|
# separately (e.g. for work machines where Emacs itself is installed
|
|
|
|
# by other means) it is important that the versions of Emacs are kept
|
|
|
|
# in sync.
|
2018-08-10 22:16:34 +02:00
|
|
|
|
2019-12-14 13:47:07 +01:00
|
|
|
{ pkgs, ... }:
|
2018-03-04 00:07:38 +01:00
|
|
|
|
2019-12-14 13:47:07 +01:00
|
|
|
with pkgs;
|
|
|
|
with third_party.emacsPackagesNg;
|
2018-03-04 00:07:38 +01:00
|
|
|
|
2019-12-14 13:47:07 +01:00
|
|
|
let
|
|
|
|
emacsWithPackages = (third_party.emacsPackagesNgGen third_party.emacs26).emacsWithPackages;
|
2018-09-19 22:59:42 +02:00
|
|
|
|
2019-12-14 13:47:07 +01:00
|
|
|
carpMode = melpaBuild {
|
|
|
|
pname = "carp-mode";
|
|
|
|
ename = "carp-mode";
|
|
|
|
version = "3.0";
|
|
|
|
recipe = builtins.toFile "recipe" ''
|
|
|
|
(carp-mode :fetcher github
|
|
|
|
:repo "carp-lang/carp"
|
|
|
|
:files ("emacs/*.el"))
|
|
|
|
'';
|
2018-09-19 22:59:42 +02:00
|
|
|
|
2019-12-14 13:47:07 +01:00
|
|
|
packageRequires = [ clojure-mode ];
|
|
|
|
src = third_party.fetchFromGitHub {
|
|
|
|
owner = "carp-lang";
|
|
|
|
repo = "carp";
|
|
|
|
rev = "6954642cadee730885717201c3180c7acfb1bfa9";
|
|
|
|
sha256 = "1pz4x2qkwjbz789bwc6nkacrjpzlxawxhl2nv0xdp731y7q7xyk9";
|
|
|
|
};
|
|
|
|
};
|
2018-09-19 22:59:42 +02:00
|
|
|
|
2019-12-14 13:47:07 +01:00
|
|
|
complete = (emacsWithPackages(epkgs:
|
2018-03-04 00:07:38 +01:00
|
|
|
# Actual ELPA packages (the enlightened!)
|
|
|
|
(with epkgs.elpaPackages; [
|
|
|
|
ace-window
|
|
|
|
avy
|
|
|
|
pinentry
|
|
|
|
rainbow-mode
|
|
|
|
undo-tree
|
|
|
|
]) ++
|
|
|
|
|
2018-05-01 16:06:28 +02:00
|
|
|
# MELPA packages:
|
|
|
|
(with epkgs.melpaPackages; [
|
2018-03-04 00:07:38 +01:00
|
|
|
browse-kill-ring
|
|
|
|
cargo
|
2019-12-14 13:47:07 +01:00
|
|
|
clojure-mode
|
2018-10-10 11:21:15 +02:00
|
|
|
counsel
|
|
|
|
counsel-notmuch
|
2018-03-04 00:07:38 +01:00
|
|
|
dash-functional
|
2019-12-14 13:47:07 +01:00
|
|
|
direnv
|
2018-03-04 00:07:38 +01:00
|
|
|
dockerfile-mode
|
2019-12-14 13:47:07 +01:00
|
|
|
# TODO: eglot removed until workspace-folders are supported (needed for gopls)
|
|
|
|
# eglot
|
2018-07-14 16:18:21 +02:00
|
|
|
elixir-mode
|
2019-01-30 10:14:50 +01:00
|
|
|
elm-mode
|
2019-12-14 13:47:07 +01:00
|
|
|
erlang
|
2018-10-10 11:21:15 +02:00
|
|
|
exwm
|
2018-03-04 00:07:38 +01:00
|
|
|
go-mode
|
|
|
|
gruber-darker-theme
|
|
|
|
haskell-mode
|
|
|
|
ht
|
2018-06-19 15:21:34 +02:00
|
|
|
hydra
|
2018-03-04 00:07:38 +01:00
|
|
|
idle-highlight-mode
|
2018-10-10 11:21:15 +02:00
|
|
|
intero
|
|
|
|
ivy
|
|
|
|
ivy-pass
|
|
|
|
ivy-prescient
|
2018-06-08 00:13:27 +02:00
|
|
|
jq-mode
|
2018-05-01 16:06:28 +02:00
|
|
|
kotlin-mode
|
2019-12-14 13:47:07 +01:00
|
|
|
lsp-mode
|
2018-03-04 00:07:38 +01:00
|
|
|
magit
|
2018-06-15 13:56:47 +02:00
|
|
|
markdown-toc
|
2018-03-04 00:07:38 +01:00
|
|
|
multi-term
|
|
|
|
multiple-cursors
|
2018-04-23 15:33:05 +02:00
|
|
|
nginx-mode
|
2018-10-10 11:21:15 +02:00
|
|
|
nix-mode
|
2018-03-04 00:07:38 +01:00
|
|
|
paredit
|
|
|
|
password-store
|
2018-05-01 16:06:28 +02:00
|
|
|
pg
|
2019-12-14 13:47:07 +01:00
|
|
|
notmuch # this comes from pkgs.third_party
|
2018-10-10 11:21:15 +02:00
|
|
|
prescient
|
2019-12-14 13:47:07 +01:00
|
|
|
racket-mode
|
2018-03-04 00:07:38 +01:00
|
|
|
rainbow-delimiters
|
2018-05-01 16:06:28 +02:00
|
|
|
restclient
|
2019-12-14 13:47:07 +01:00
|
|
|
sly
|
2018-05-07 14:43:35 +02:00
|
|
|
smartparens
|
2018-03-04 00:07:38 +01:00
|
|
|
string-edit
|
2018-10-10 11:21:15 +02:00
|
|
|
swiper
|
2018-06-15 00:12:06 +02:00
|
|
|
telephone-line
|
2018-06-15 13:56:47 +02:00
|
|
|
terraform-mode
|
2018-03-17 21:47:27 +01:00
|
|
|
toml-mode
|
2019-12-14 13:47:07 +01:00
|
|
|
transient
|
2018-06-22 10:32:01 +02:00
|
|
|
use-package
|
2018-03-04 00:07:38 +01:00
|
|
|
uuidgen
|
2018-05-23 12:17:20 +02:00
|
|
|
web-mode
|
2018-06-06 23:32:55 +02:00
|
|
|
websocket
|
2019-12-14 13:47:07 +01:00
|
|
|
which-key
|
|
|
|
xelb
|
2018-05-01 16:06:28 +02:00
|
|
|
yaml-mode
|
2018-03-04 01:53:41 +01:00
|
|
|
]) ++
|
|
|
|
|
2019-12-14 13:47:07 +01:00
|
|
|
# Custom packages
|
|
|
|
[ carpMode ]
|
|
|
|
));
|
|
|
|
in {
|
|
|
|
inherit complete;
|
|
|
|
depsOnly = complete.deps;
|
|
|
|
}
|