packages.el

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