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! ox-hugo)
16(package! flyspell)
17(package! markdown-mode)
18(package! auto-virtualenv)
19(package! wakatime-mode)
20(package! sclang-extensions)
21(package! tree-sitter)
22(package! tree-sitter-langs)
23(package! writeroom-mode)
24(package! tidal)
25(package! just-mode)
26
27;; To install a package directly from a remote git repo, you must specify a
28;; `:recipe'. You'll find documentation on what `:recipe' accepts here:
29;; https://github.com/raxod502/straight.el#the-recipe-format
30;(package! another-package
31; :recipe (:host github :repo "username/repo"))
32
33(package! chordpro-mode
34 :recipe (:host github :repo "sciurius/chordpro-mode"))
35
36(package! cook-mode
37 :recipe (:host github :repo "cooklang/cook-mode"))
38
39(package! helm-bibtex
40 :recipe (:host github :repo "tmalsburg/helm-bibtex"))
41
42(package! org-ref
43 :recipe (:host github :repo "jkitchin/org-ref"))
44
45(package! copilot
46 :recipe (:host github :repo "zerolfx/copilot.el" :files ("*.el" "dist")))
47
48(package! magit-gitflow
49 :recipe (:host github :repo "jtatarik/magit-gitflow"))
50
51(unpin! evil-collection)
52(package! evil-collection
53 :recipe (:repo "emacs-evil/evil-collection" :branch "master"))
54
55;; If the package you are trying to install does not contain a PACKAGENAME.el
56;; file, or is located in a subdirectory of the repo, you'll need to specify
57;; `:files' in the `:recipe':
58;(package! this-package
59; :recipe (:host github :repo "username/repo"
60; :files ("some-file.el" "src/lisp/*.el")))
61
62;; If you'd like to disable a package included with Doom, you can do so here
63;; with the `:disable' property:
64;(package! builtin-package :disable t)
65
66;; You can override the recipe of a built in package without having to specify
67;; all the properties for `:recipe'. These will inherit the rest of its recipe
68;; from Doom or MELPA/ELPA/Emacsmirror:
69;(package! builtin-package :recipe (:nonrecursive t))
70;(package! builtin-package-2 :recipe (:repo "myfork/package"))
71
72;; Specify a `:branch' to install a package from a particular branch or tag.
73;; This is required for some packages whose default branch isn't 'master' (which
74;; our package manager can't deal with; see raxod502/straight.el#279)
75;(package! builtin-package :recipe (:branch "develop"))
76
77;; Use `:pin' to specify a particular commit to install.
78;(package! builtin-package :pin "1a2b3c4d5e")
79
80
81;; Doom's packages are pinned to a specific commit and updated from release to
82;; release. The `unpin!' macro allows you to unpin single packages...
83;(unpin! pinned-package)
84;; ...or multiple packages
85;(unpin! pinned-package another-pinned-package)
86;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
87;(unpin! t)