packages.el 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ;; -*- no-byte-compile: t; -*-
  2. ;;; $DOOMDIR/packages.el
  3. ;; To install a package with Doom you must declare them here and run 'doom sync'
  4. ;; on the command line, then restart Emacs for the changes to take effect -- or
  5. ;; use 'M-x doom/reload'.
  6. ;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
  7. (package! ef-themes)
  8. (package! vulpea)
  9. (package! openwith)
  10. (package! ef-themes)
  11. (package! nyan-mode)
  12. (package! w3m)
  13. (package! nov)
  14. (package! ace-link)
  15. (package! git-link)
  16. (package! blacken)
  17. (package! org-modern)
  18. ;; To install a package directly from a remote git repo, you must specify a
  19. ;; `:recipe'. You'll find documentation on what `:recipe' accepts here:
  20. ;; https://github.com/radian-software/straight.el#the-recipe-format
  21. ;; (package! another-package
  22. ;; :recipe (:host github :repo "username/repo"))
  23. ;; If the package you are trying to install does not contain a PACKAGENAME.el
  24. ;; file, or is located in a subdirectory of the repo, you'll need to specify
  25. ;; `:files' in the `:recipe':
  26. ;; (package! this-package
  27. ;; :recipe (:host github :repo "username/repo"
  28. ;; :files ("some-file.el" "src/lisp/*.el")))
  29. ;; If you'd like to disable a package included with Doom, you can do so here
  30. ;; with the `:disable' property:
  31. ;; (package! builtin-package :disable t)
  32. ;; You can override the recipe of a built in package without having to specify
  33. ;; all the properties for `:recipe'. These will inherit the rest of its recipe
  34. ;; from Doom or MELPA/ELPA/Emacsmirror:
  35. ;; (package! builtin-package :recipe (:nonrecursive t))
  36. ;; (package! builtin-package-2 :recipe (:repo "myfork/package"))
  37. ;; Specify a `:branch' to install a package from a particular branch or tag.
  38. ;; This is required for some packages whose default branch isn't 'master' (which
  39. ;; our package manager can't deal with; see radian-software/straight.el#279)
  40. ;; (package! builtin-package :recipe (:branch "develop"))
  41. ;; Use `:pin' to specify a particular commit to install.
  42. ;; (package! builtin-package :pin "1a2b3c4d5e")
  43. ;; Doom's packages are pinned to a specific commit and updated from release to
  44. ;; release. The `unpin!' macro allows you to unpin single packages...
  45. ;; (unpin! pinned-package)
  46. ;; ...or multiple packages
  47. ;; (unpin! pinned-package another-pinned-package)
  48. ;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
  49. ;; (unpin! t)