-
Notifications
You must be signed in to change notification settings - Fork 4
/
packages.el
138 lines (119 loc) · 4.6 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
;; -*- no-byte-compile: t; -*-
(disable-packages! flyspell
ccls ; I use clangd.
compat ; I use the latest version of Emacs.
ace-window
volatile-highlights
hl-line
elfeed-goodies
mu4e-alert)
;; PRs that I've made but haven't been merged yet.
(when (and (modulep! :editor evil +everywhere)
(modulep! :lang org))
(package! evil-org :recipe
(:host github :repo "LemonBreezes/evil-org-mode")
:pin "4d30406efc7c945069c217a051114cc4ad3e7d5a"))
(package! mu4e :built-in t)
(unless (modulep! :config default +smartparens)
(disable-packages! smartparens))
(when (modulep! :checkers syntax +flymake)
(disable-packages! flycheck))
;; cae-evil.el
(when (modulep! :editor evil)
(package! evil-owl)
(package! tabgo)
(package! evil-tutor))
;; cae-smartparens.el
(when (and (not (modulep! :editor lispy))
(modulep! :editor evil))
(package! evil-cleverparens))
;; benchmarks
(package! elisp-benchmarks)
;;; UI
(package! info-colors)
(package! communinfo)
(package! authinfo-color-mode :recipe (:host github :repo "tecosaur/authinfo-color-mode"))
(package! hercules :recipe (:host github :repo "Zetagon/hercules"))
(package! outline-minor-faces)
(package! beacon)
(package! breadcrumb :recipe (:host github :repo "joaotavora/breadcrumb"))
(package! iscroll)
(package! indent-bars :recipe (:host github :repo "jdtsmith/indent-bars"))
(package! backline)
(package! xterm-color)
(package! casual-lib :recipe (:host github :repo "kickingvegas/casual-lib"))
(package! casual-calc :recipe (:host github :repo "kickingvegas/casual-calc"))
(package! syslog-mode)
;; cae-theme.el
(package! modus-themes)
(package! circadian :recipe (:host github :repo "guidoschmidt/circadian.el"))
(package! standard-themes)
(package! ef-themes)
(package! crazy-theme :recipe (:host github :repo "eval-exec/crazy-theme.el"))
(package! girly-notebook-theme :recipe (:host github :repo "melissaboiko/girly-notebook-theme"))
(package! theme-magic)
(package! ewal)
;;; Tools
(package! nov :recipe (:host github :repo "emacsmirror/nov"))
(package! w3m)
(package! pdftotext :recipe (:host github :repo "tecosaur/pdftotext.el"))
(package! keyfreq)
(package! wakatime-mode :recipe (:host github :repo "wakatime/wakatime-mode"))
(when (modulep! :email mu4e)
(package! consult-mu :recipe
(:host github :repo "armindarvish/consult-mu" :files ("*" "extras/*"))))
(package! 0x0)
;; cae-lsp.el
(when (modulep! :tools lsp +eglot)
(package! eglot-booster :recipe (:host github :repo "jdtsmith/eglot-booster")))
;; These are used for their autoloads. They are not explicitly referenced in
;; this configuration.
(package! crontab-mode)
(package! inputrc-mode)
(package! ebuild-mode :built-in t)
(package! tokei) ;I use this for counting lines of code
;in my projects.
(package! font-lock-studio) ;I don't use this often, but it's useful
;for debugging font-lock issues.
(package! show-font :recipe ;Preview fonts
(:host github :repo "protesilaos/show-font"))
(package! eff)
(package! git-modes)
(package! huff-mode :recipe (:host github :repo "GokhanPolat/emacs-huff-mode"))
;;; Editor
(package! yank-indent :recipe (:host github :repo "jimeh/yank-indent"))
(package! file-info :recipe (:host github :repo "Artawower/file-info.el"))
(package! titlecase)
(package! transpose-frame)
(package! logos)
(package! auto-activating-snippets :recipe (:host github :repo "ymarco/auto-activating-snippets"))
(package! smart-semicolon)
(package! restore-point :recipe (:host github :repo "arthurcgusmao/restore-point"))
(package! expand-region-improved :recipe (:host github :repo "leotaku/expand-region-improved"))
(package! parrot :recipe (:host github :repo "positron-solutions/parrot"))
(package! string-inflection)
(package! beginend)
(package! isearch-mb)
(package! edit-indirect)
(package! string-edit-at-point)
(package! zop-to-char)
(package! i3wm-config-mode)
;; cae-multi.el
(package! git-auto-commit-mode)
;; cae-repeat.el
(package! define-repeat-map :recipe (:repo "https://tildegit.org/acdw/define-repeat-map.el.git"))
;; cae-vlf.el
(package! vlf)
;; cae-visible-scrolling
(package! scrollkeeper)
;; cae-bindings.el
(package! vline)
(package! try)
(package! ov)
(package! lsp-ui)
;; These are used for their autoloads. They are not explicitly referenced in
;; this configuration.
(package! substitute) ; This is for when `lsp-rename' is not available.
;;; Lang
(when (modulep! :lang haskell)
(package! consult-hoogle))