-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.el
356 lines (296 loc) · 10.3 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
;; -*- no-byte-compile: t; -*-
;;; $DOOMDIR/packages.el
;; To install a package with Doom you must declare them here, run 'doom sync' on
;; the command line, then restart Emacs for the changes to take effect.
;; Alternatively, use M-x doom/reload.
;; Doom's packages are pinned to a specific commit and updated from release to
;; release. The `unpin!' macro allows you to unpin single packages...
;(unpin! pinned-package)
;; ...or multiple packages
;(unpin! pinned-package another-pinned-package)
;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
;(unpin! t)
;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
;(package! some-package)
;; To install a package directly from a particular repo, you'll need to specify
;; a `:recipe'. You'll find documentation on what `:recipe' accepts here:
;; @docs https://github.com/raxod502/straight.el#the-recipe-format
;(package! another-package
; :recipe (:host github :repo "username/repo"))
;; If the package you are trying to install does not contain a PACKAGENAME.el
;; file, or is located in a subdirectory of the repo, you'll need to specify
;; `:files' in the `:recipe':
;(package! this-package
; :recipe (:host github :repo "username/repo"
; :files ("some-file.el" "src/lisp/*.el")))
;; If you'd like to disable a package included with Doom, for whatever reason,
;; you can do so here with the `:disable' property:
;(package! builtin-package :disable t)
;; You can override the recipe of a built in package without having to specify
;; all the properties for `:recipe'. These will inherit the rest of its recipe
;; from Doom or MELPA/ELPA/Emacsmirror:
;(package! builtin-package :recipe (:nonrecursive t))
;(package! builtin-package-2 :recipe (:repo "myfork/package"))
;; Specify a `:branch' to install a package from a particular branch or tag.
;; This is required for some packages whose default branch isn't 'master' (which
;; our package manager can't deal with; see raxod502/straight.el#279)
;(package! builtin-package :recipe (:branch "develop"))
;;;
;; Manually delete the built repo:
;; `trs straight/build-29.0.92/jupyter`
;; Then do `doom-sync` to build the version at =~/.emacs.d/.local/straight/repos/jupyter=.
;;
;; `doom-sync -u` is needed for the unpinnings to take effect
(unpin! hl-todo)
;;;
;; (package! flycheck
;; :recipe (:build (:not native-compile compile)))
;;;
;; (unpin! jupyter)
(package! jupyter
:recipe (:build (:not native-compile compile))
;; [[https://github.com/emacs-jupyter/jupyter/issues/297][ZMQ subprocess error · Issue #297 · emacs-jupyter/jupyter]]
;; :pin "053a78d"
:pin "1baabc8"
;; :pin "da306a6"
)
(package! racket-mode :pin "22e319754dcf650e282b3ba33b9d0ee3cda81007")
;; (package! ob-racket
;; ;; doom uses https://github.com/DEADB17/ob-racket
;; ;;;
;; :recipe (:host github :repo "togakangaroo/ob-racket") ;; @bug `Invalid function: (requires (assoc 'requires params))`
;; )
;;; @themes
(package! solarized-theme)
(package! humanoid-themes)
(package! kaolin-themes)
(package! spacemacs-theme)
(package! apropospriate-theme)
(package! darktooth-theme)
(package! rebecca-theme)
(package! solo-jazz-theme)
(package! github-theme)
(package! night-owl-theme)
(package! colorless-themes)
(package! leuven-theme)
(package! modus-themes)
(package! ef-themes)
(package! material-theme)
(package! tao-theme)
(package! organic-green-theme)
(package! color-theme-sanityinc-tomorrow)
;; (package! chatgpt-shell
;; :recipe (:host github :repo "xenodium/chatgpt-shell" :branch "main"))
;; (unpin! chatgpt-shell)
(package! chatgpt-shell)
(package! ob-chatgpt-shell)
(package! dall-e-shell)
(package! ob-dall-e-shell)
(package! pcsv) ;; needed by =chatgpt-shell=
(unpin! chatgpt-shell ob-chatgpt-shell dall-e-shell ob-dall-e-shell)
;; [[id:c0713162-d1bd-46fc-9ef4-f5495d7ff16f][doom/bugs, issues:@upstreamBug hlissner/doom-emacs#5629 {BUG} Some themes fail to build]]
;; (package! soft-stone-theme
;; :recipe (:build (:not native-compile compile)))
;; (package! jetbrains-darcula-theme)
;; (package! doom-themes
;; :recipe (:build (:not native-compile compile)))
(package! base16-theme)
(package! anti-zenburn-theme)
(package! moe-theme) ;; Optimized for terminal’s 256 color palettes
(package! poet-theme) ;; Exclusively aimed at graphical emacs
(package! zaiste-theme
:recipe (:host github :repo "zaiste/zaiste-emacs-theme"))
(package! tramp-theme)
(package! load-theme-buffer-local :recipe (:build (:not native-compile compile))) ;; @noNativeComp
;;; @experimental
(package! dired-quick-sort)
;;;
(package! magit-section) ;; needed by doom
;;;
(package! prism
:recipe (:host github :repo "alphapapa/prism.el"))
(package! orgmdb
:recipe (:host github :repo "isamert/orgmdb.el"))
(package! ox-ipynb
:recipe (:host github :repo "jkitchin/ox-ipynb"))
(package! explain-pause-mode
:recipe (:host github :repo "lastquestion/explain-pause-mode"))
(package! teco-screenshot
;; [[https://github.com/tecosaur/screenshot/issues/12][tecosaur/screenshot#12 `(require 'posframe)` makes the package unusable on the TUI]]
:recipe (:host github :repo "tecosaur/screenshot"))
;;;
(package! plz
:recipe (:host github :repo "alphapapa/plz.el"))
(package! ement
:recipe (:host github :repo "alphapapa/ement.el"))
;;;
(package! gnus)
;;;
(package! org-transclusion)
;;;
(package! ediprolog)
;;;
(package! htmlize)
;;;
(unpin! company-mode)
(package! helm-company)
(unpin! helm-company)
;;;
;; (package! fuz
;; :recipe (:host github :repo "rustify-emacs/fuz.el"))
;; (package! snails
;; :recipe (:build (:not compile) :host github :repo "manateelazycat/snails"))
;;;
(package! vundo ;; needs at least emacs@28
:recipe (:host github :repo "casouri/vundo"))
;;;
;; this git repo was outdated, I am installing directly from emacswiki
;; (package! highlight
;; ;; @example
;; :recipe (:host nil :repo "https://framagit.org/steckerhalter/highlight.el" :branch "master"))
;;;
(package! ov
:recipe (:host github :repo "emacsorphanage/ov")) ;; needed by our rainbow-mode
(unpin! rainbow-mode)
(package! rainbow-mode
;; my fork uses overlays instead of text properties so that it is not erased by hl-line
:recipe (:host github :repo "NightMachinery/rainbow-mode"))
;; (package! rainbow-mode :recipe (:local-repo "path/to/repo"))
;;;
(package! org-super-links
:recipe (:repo "toshism/org-super-links" :type git :host github :branch "develop"))
(package! targets
:recipe (:repo "noctuid/targets.el" :type git :host github))
(package! exato)
;; (package! term-cursor
;; :recipe (:repo "h0d/term-cursor.el" :type git :host github))
(package! evil-terminal-cursor-changer)
(package! mips-mode)
(package! async-await)
(package! org-sticky-header)
(package! applescript-mode)
;; (package! magit-vcsh)
(package! smeargle) ;; Highlighting Regions by Last Updated Time
(package! org-web-tools)
(package! helm-org-rifle)
(package! zoom)
(package! embark)
(package! sudoku)
(package! blacken)
(package! elpy)
(package! pyvenv)
(package! lispyville)
;; (package! dimmer)
(package! google-translate)
(package! move-text)
(package! rg)
(package! deadgrep)
(package! git-link)
(package! neuron-mode)
;;;
;; (package! nov)
;; git host of =nov= is down
;; [jalali:1403/04/12/16:06]
;;;
(package! hungry-delete)
(package! ob-tmux)
(package! iscroll)
(package! evil-tutor)
(package! orderless)
(package! vertico)
(package! consult
;; :pin "3755ed7d0f17e69a209705ff76798a96e6531441"
)
(package! embark-consult)
(package! marginalia)
(package! cape)
(unpin! julia-mode julia-repl eglot-jl)
(package! julia-mode)
(package! julia-repl)
(package! eglot)
(package! eglot-jl)
;; (when (package! eglot)
;; (package! eglot-jl))
;; (package! fzf)
(package! counsel-fd)
(package! org-drill)
(package! org-ql)
(package! org-ref)
(package! org-vcard)
(package! org-books)
(package! helm-org-ql)
(package! toc-org)
(package! org-fragtog)
(package! nndiscourse)
(package! org-reveal)
(package! org-tree-slide :pin "d6529bc2df727d09014e0e56abf4f15a8e8fc20f")
(package! company-try-hard)
(package! a)
(package! vlf)
(package! bug-hunter)
(package! telega)
(package! disk-usage)
(package! dired+)
(package! poporg)
(package! memoize)
(package! vimrc-mode)
(package! eredis)
(package! evil-mc)
(package! outshine)
(package! navi-mode)
(package! xterm-color)
(package! code-cells)
(package! ob-mermaid)
(package! org-inline-pdf)
;;;
;; * [[https://github.com/dalanicolai/image-roll.el][dalanicolai/image-roll.el: Virtual scroll display engine for Emacs]]
(package! pdf-tools :recipe
(:host github
:repo "dalanicolai/pdf-tools"
:branch "pdf-roll"
:files ("lisp/*.el"
"README"
("build" "Makefile")
("build" "server")
(:exclude "lisp/tablist.el" "lisp/tablist-filter.el"))))
(package! image-roll :recipe
(:host github
:repo "dalanicolai/image-roll.el"))
;;;
(package! company-quickhelp) ;; uses pos-tip which only works in GUI
(package! company-quickhelp-terminal)
(unpin! company-box)
(package! company-box)
(package! eldoc-box) ;; GUI-only: https://github.com/casouri/eldoc-box/issues/35
;; (package! evil-better-visual-line) ; @todo fork this and reverse its behavior? Just disable evil-respect-visual...?
;;;
;; (package! gerbil-mode
;; :recipe (:host github :repo "vyzo/gerbil"
;; :files ("etc/gerbil-mode.el")))
;; (package! gambit-mode
;; :recipe (:host github :repo "gambit/gambit"
;; :files ("misc/gambit.el")))
;;;
(package! clipetty)
;;;
(package! org-make-toc)
;;;
(package! copilot
:recipe (:host github :repo "zerolfx/copilot.el" :files ("*.el" "dist")))
(package! gptel)
(package! llm)
(package! ellama)
(package! whisper
:recipe (:host github :repo "natrys/whisper.el"))
;;;
(package! sdcv)
;;;
(package! exec-path-from-shell)
;;;
(package! nerd-icons)
;;;
(disable-packages!
anaconda-mode
;; smartparens ;; @hang will hang if disabled [jalali:1402/02/24/06:16]
)
;;;