-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.el
71 lines (63 loc) · 2.18 KB
/
packages.el
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
67
68
69
70
71
;; packages.el --- Located at $DOOMDIR/packages.el-*-lexical-binding:t-*-
;;; Commentary:
;;; Code:
;; Unpin doom's version
(unpin! org-roam)
;; Pin to org 9.6 for now
(package! org :pin "806abc5a2bbcb5f884467a0145547221ba09eb59")
;; Load 3rd party packages
(package! init-loader)
(package! benchmark-init)
(package! org-ref)
(package! websocket) ;; org-roam-ui related
(package! org-roam-ui)
(package! org-roam-bibtex
:recipe (:host github :repo "org-roam/org-roam-bibtex"))
(when (modulep! :completion vertico)
(package! citar))
(package! org-ql)
(package! anki-editor)
(package! org-clock-convenience)
(package! vimrc-mode)
(package! flycheck-package)
(package! flycheck-eldev)
(package! erefactor)
(package! org-variable-pitch
:recipe '(:host github
:repo "cadadr/elisp"
:files ("org-variable-pitch.el")))
(package! evil-motion-trainer
:recipe '(:host github :repo "martinbaillie/evil-motion-trainer"))
(package! emacs-with-nyxt
:recipe '(:host github
:repo "ag91/emacs-with-nyxt"
:files ("emacs-with-nyxt.el")))
(package! doom-snippets :ignore t) ;; ignore doom's snippets
(package! org-wild-notifier)
(package! copilot
:recipe (:host github :repo "zerolfx/copilot.el" :files ("*.el" "dist")))
;; Own code:
(package! kindle-highlights-to-org
:recipe '(:host github :repo "Zweihander-Main/kindle-highlights-to-org"))
(package! zweigtd-agenda
:recipe '(:host github :repo "Zweihander-Main/zweigtd-agenda"
:files ("*.el")))
(package! zweigtd-goals
:recipe '(:host github :repo "Zweihander-Main/zweigtd-goals"))
(package! zweigtd-reviews
:recipe '(:host github :repo "Zweihander-Main/zweigtd-reviews"
:files ("zweigtd-reviews.el" "templates")))
(package! org-newtab
:recipe (:local-repo "~/dev/misc/emacs/org-newtab"
:files (:defaults )
:build (:not compile)))
;; Temp waiting on https://gitlab.com/emacs-ansible/emacs-ansible/-/issues/2
(package! ansible
:recipe (:host github :repo "k1LoW/emacs-ansible")
:pin "dff3cd4250320e83f65ac616acace66257aa6c21")
;; Fix broken packages
;; (straight-use-package '(flymake :type built-in))
;; Local Variables:
;; no-byte-compile: t
;; End:
;;; packages.el ends here