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
;;; lisp/wv-packages.el -*- lexical-binding: t; -*-
(defvar bootstrap-version)
(let ((bootstrap-file
(expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
(bootstrap-version 5))
(unless (file-exists-p bootstrap-file)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
'silent 'inhibit-cookies)
(goto-char (point-max))
(eval-print-last-sexp)))
(load bootstrap-file nil 'nomessage))
(straight-use-package 'exec-path-from-shell)
(straight-use-package 'use-package)
(straight-use-package 'vertico)
(straight-use-package 'orderless)
(straight-use-package 'marginalia)
(straight-use-package 'company)
(straight-use-package 'which-key)
(straight-use-package 'flycheck)
(straight-use-package 'flycheck-languagetool)
(straight-use-package 'yasnippet)
(straight-use-package 'yasnippet-snippets)
(straight-use-package 'ox-hugo)
(straight-use-package 'org-roam)
(straight-use-package 'org-gcal)
(straight-use-package 'magit)
(straight-use-package 'notmuch)
(straight-use-package 'org-mime)
(straight-use-package 'ol-notmuch)
(straight-use-package 'messages-are-flowing)
(straight-use-package 'circe)
(straight-use-package 'emojify)
(straight-use-package '0x0)
(straight-use-package 'elfeed)
(straight-use-package 'youtube-dl)
(straight-use-package 'editorconfig)
(straight-use-package 'paredit)
(straight-use-package 'rainbow-delimiters)
(straight-use-package 'clojure-mode)
(straight-use-package 'cider)
(provide 'wv-packages)