1;; -*- no-byte-compile: t; -*-
2;;; $DOOMDIR/packages.el
3
4;; To install a package with Doom you must declare them here and run 'doom sync'
5;; on the command line, then restart Emacs for the changes to take effect -- or
6;; use 'M-x doom/reload'.
7
8
9;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
10;;(package! some-package)
11
12(package! org-bullets)
13(package! smooth-scrolling)
14(package! htmlize)
15(package! flyspell)
16(package! markdown-mode)
17(package! auto-virtualenv)
18(package! wakatime-mode)
19(package! sclang-extensions)
20(package! tree-sitter)
21(package! tree-sitter-langs)
22(package! writeroom-mode)
23(package! just-mode)
24(package! edit-server)
25(package! parinfer-rust-mode)
26(package! dhall-mode)
27(package! templ-ts-mode)
28
29(package! mu4e-alert :disable t)
30
31;; To install a package directly from a remote git repo, you must specify a
32;; `:recipe'. You'll find documentation on what `:recipe' accepts here:
33;; https://github.com/raxod502/straight.el#the-recipe-format
34;;(package! another-package
35;; :recipe (:host github :repo "username/repo"))
36
37(package! chordpro-mode
38 :recipe (:host github :repo "sciurius/chordpro-mode"))
39
40(package! cook-mode
41 :recipe (:host github :repo "cooklang/cook-mode"))
42
43(package! helm-bibtex
44 :recipe (:host github :repo "tmalsburg/helm-bibtex"))
45
46(package! org-ref
47 :recipe (:host github :repo "jkitchin/org-ref"))
48
49(package! copilot
50 :recipe (:host github :repo "zerolfx/copilot.el" :files ("*.el" "dist")))
51
52(package! magit-gitflow
53 :recipe (:host github :repo "jtatarik/magit-gitflow"))
54
55(package! gleam-mode
56 :recipe (:host github :repo "gleam-lang/gleam-mode"))
57
58(package! hare-mode
59 :recipe (:host sourcehut :repo "bbuccianti/hare-mode"))
60
61;;(unpin! evil-collection)
62;;(package! evil-collection
63;; :recipe (:repo "emacs-evil/evil-collection" :branch "master"))
64
65;; If the package you are trying to install does not contain a PACKAGENAME.el
66;; file, or is located in a subdirectory of the repo, you'll need to specify
67;; `:files' in the `:recipe':
68;;(package! this-package
69;; :recipe (:host github :repo "username/repo"
70;; :files ("some-file.el" "src/lisp/*.el")))
71
72;; If you'd like to disable a package included with Doom, you can do so here
73;; with the `:disable' property:
74;;(package! builtin-package :disable t)
75
76;; You can override the recipe of a built in package without having to specify
77;; all the properties for `:recipe'. These will inherit the rest of its recipe
78;; from Doom or MELPA/ELPA/Emacsmirror:
79;;(package! builtin-package :recipe (:nonrecursive t))
80;;(package! builtin-package-2 :recipe (:repo "myfork/package"))
81
82;; Specify a `:branch' to install a package from a particular branch or tag.
83;; This is required for some packages whose default branch isn't 'master' (which
84;; our package manager can't deal with; see raxod502/straight.el#279)
85;;(package! builtin-package :recipe (:branch "develop"))
86
87;; Use `:pin' to specify a particular commit to install.
88;;(package! builtin-package :pin "1a2b3c4d5e")
89
90
91;; Doom's packages are pinned to a specific commit and updated from release to
92;; release. The `unpin!' macro allows you to unpin single packages...
93;;(unpin! pinned-package)
94;; ...or multiple packages
95;;(unpin! pinned-package another-pinned-package)
96;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
97;;(unpin! t)