tvl-depot/tools/emacs/default.nix

95 lines
1.7 KiB
Nix
Raw Normal View History

# This file builds an Emacs pre-configured with the packages I need
# and my personal Emacs configuration.
2018-08-10 22:16:34 +02:00
{ pkgs, ... }:
with pkgs;
with third_party.emacsPackagesNg;
with third_party.emacs;
let
emacsWithPackages = (third_party.emacsPackagesNgGen third_party.emacs26).emacsWithPackages;
tazjinsEmacs = (emacsWithPackages(epkgs:
# Actual ELPA packages (the enlightened!)
(with epkgs.elpaPackages; [
ace-window
avy
pinentry
rainbow-mode
undo-tree
]) ++
# MELPA packages:
(with epkgs.melpaPackages; [
browse-kill-ring
cargo
clojure-mode
counsel
counsel-notmuch
dash-functional
direnv
dockerfile-mode
# 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
erlang
exwm
go-mode
gruber-darker-theme
haskell-mode
ht
2018-06-19 15:21:34 +02:00
hydra
idle-highlight-mode
intero
ivy
ivy-pass
ivy-prescient
2018-06-08 00:13:27 +02:00
jq-mode
kotlin-mode
lsp-mode
magit
markdown-toc
multi-term
multiple-cursors
2018-04-23 15:33:05 +02:00
nginx-mode
nix-mode
paredit
password-store
pg
notmuch # this comes from pkgs.third_party
prescient
racket-mode
rainbow-delimiters
restclient
sly
smartparens
string-edit
swiper
telephone-line
terraform-mode
2018-03-17 21:47:27 +01:00
toml-mode
transient
2018-06-22 10:32:01 +02:00
use-package
uuidgen
web-mode
websocket
which-key
xelb
yaml-mode
]) ++
# Custom packages
[ carp-mode ]
));
in third_party.writeShellScriptBin "tazjins-emacs" ''
exec ${tazjinsEmacs}/bin/emacs \
--debug-init \
--no-site-file \
--no-site-lisp \
--no-init-file \
--directory ${./config} \
--eval "(require 'init)"
''