packages.el 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. ;; To install a package directly from a remote git repo, you must specify a
  18. ;; `:recipe'. You'll find documentation on what `:recipe' accepts here:
  19. ;; https://github.com/radian-software/straight.el#the-recipe-format
  20. ;; (package! another-package
  21. ;; :recipe (:host github :repo "username/repo"))
  22. ;; If the package you are trying to install does not contain a PACKAGENAME.el
  23. ;; file, or is located in a subdirectory of the repo, you'll need to specify
  24. ;; `:files' in the `:recipe':
  25. ;; (package! this-package
  26. ;; :recipe (:host github :repo "username/repo"
  27. ;; :files ("some-file.el" "src/lisp/*.el")))
  28. ;; If you'd like to disable a package included with Doom, you can do so here
  29. ;; with the `:disable' property:
  30. ;; (package! builtin-package :disable t)
  31. ;; You can override the recipe of a built in package without having to specify
  32. ;; all the properties for `:recipe'. These will inherit the rest of its recipe
  33. ;; from Doom or MELPA/ELPA/Emacsmirror:
  34. ;; (package! builtin-package :recipe (:nonrecursive t))
  35. ;; (package! builtin-package-2 :recipe (:repo "myfork/package"))
  36. ;; Specify a `:branch' to install a package from a particular branch or tag.
  37. ;; This is required for some packages whose default branch isn't 'master' (which
  38. ;; our package manager can't deal with; see radian-software/straight.el#279)
  39. ;; (package! builtin-package :recipe (:branch "develop"))
  40. ;; Use `:pin' to specify a particular commit to install.
  41. ;; (package! builtin-package :pin "1a2b3c4d5e")
  42. ;; Doom's packages are pinned to a specific commit and updated from release to
  43. ;; release. The `unpin!' macro allows you to unpin single packages...
  44. ;; (unpin! pinned-package)
  45. ;; ...or multiple packages
  46. ;; (unpin! pinned-package another-pinned-package)
  47. ;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
  48. ;; (unpin! t)