dotfiles/doom/.config/doom/packages.el

70 lines
2.6 KiB
EmacsLisp
Raw Normal View History

2022-03-03 16:38:17 -05:00
;; -*- no-byte-compile: t; -*-
;;; $DOOMDIR/packages.el
;; To install a package with Doom you must declare them here and run 'doom sync'
;; on the command line, then restart Emacs for the changes to take effect -- or
;; use 'M-x doom/reload'.
;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
;(package! some-package)
;; To install a package directly from a remote git repo, you must specify a
;; `:recipe'. You'll find documentation on what `:recipe' accepts here:
;; 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, 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"))
;; Use `:pin' to specify a particular commit to install.
;(package! builtin-package :pin "1a2b3c4d5e")
;; 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)
2022-03-24 22:01:35 -04:00
2022-10-04 10:56:27 -04:00
(package! evil-tutor)
(package! focus)
2022-03-08 09:12:35 -05:00
(package! ghq :pin "582bd6daa505d04c7cc06d6c82ed8aee0624bfbe")
2022-03-08 11:24:59 -05:00
(package! smudge :pin "9e3488f485b7d7f3c97ebaad34ed552bb0cc228a")
2022-10-04 10:56:27 -04:00
(package! speed-type :pin "304cb8cd6c30d07577d7d864fd32858a29a73dba")
(package! pinentry)
2022-12-02 15:24:44 -05:00
(package! redacted)
2022-12-02 15:32:21 -05:00
(package! subed
:recipe (:host github :repo "sachac/subed"
:files ("subed/*.el")))
2022-09-15 08:58:10 -04:00
(package! ess-view)
(package! ess-view-data)
2023-01-02 11:08:57 -05:00
(package! keycast)
2022-09-23 09:37:05 -04:00
(package! pandoc-mode)
2022-09-27 10:43:32 -04:00
(package! wakatime-mode)
2023-01-02 11:08:57 -05:00
(package! w3m)
(package! edit-server)
2023-01-04 16:34:47 -05:00
(package! auto-dark)