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 ;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror: 9 ;; (package! some-package) 10 11 ;; To install a package directly from a remote git repo, you must specify a 12 ;; `:recipe'. You'll find documentation on what `:recipe' accepts here: 13 ;; https://github.com/radian-software/straight.el#the-recipe-format 14 ;; (package! another-package 15 ;; :recipe (:host github :repo "username/repo")) 16 17 ;; If the package you are trying to install does not contain a PACKAGENAME.el 18 ;; file, or is located in a subdirectory of the repo, you'll need to specify 19 ;; `:files' in the `:recipe': 20 ;; (package! this-package 21 ;; :recipe (:host github :repo "username/repo" 22 ;; :files ("some-file.el" "src/lisp/*.el"))) 23 24 ;; If you'd like to disable a package included with Doom, you can do so here 25 ;; with the `:disable' property: 26 ;; (package! builtin-package :disable t) 27 28 ;; You can override the recipe of a built in package without having to specify 29 ;; all the properties for `:recipe'. These will inherit the rest of its recipe 30 ;; from Doom or MELPA/ELPA/Emacsmirror: 31 ;; (package! builtin-package :recipe (:nonrecursive t)) 32 ;; (package! builtin-package-2 :recipe (:repo "myfork/package")) 33 34 ;; Specify a `:branch' to install a package from a particular branch or tag. 35 ;; This is required for some packages whose default branch isn't 'master' (which 36 ;; our package manager can't deal with; see radian-software/straight.el#279) 37 ;; (package! builtin-package :recipe (:branch "develop")) 38 39 ;; Use `:pin' to specify a particular commit to install. 40 ;; (package! builtin-package :pin "1a2b3c4d5e") 41 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) 49 50 ;; (package! org-pandoc-import 51 ;; :recipe (:host github 52 ;; :repo "tecosaur/org-pandoc-import" 53 ;; :files ("*.el" "filters" "preprocessors"))) 54 55 ;; (package! org-gcal) 56 ;; (package! consult-gh) 57 58 (when (eq system-type 'berkeley-unix) 59 (package! pg) 60 (package! nov) 61 (package! empv) 62 (package! verb) 63 ;; (package! gptel :recipe (:nonrecursive t)) 64 (package! magit-delta) 65 66 (package! devdocs) 67 (package! devdocs-browser) 68 (package! compiler-explorer) 69 70 (package! kconfig-ref) 71 (package! kconfig-mode) 72 73 (package! osm) 74 (package! org-anki) 75 (package! org-roam-ui) 76 (package! org-pdftools) 77 (package! org-nix-shell) 78 (package! org-super-agenda) 79 (package! org-tag-beautify) 80 (package! org-link-beautify) 81 (package! org-table-highlight) 82 83 (package! kdl-mode) 84 85 ;; ================ 86 (package! abc-mode) 87 (package! scad-mode) 88 (package! ob-mermaid) 89 (package! mermaid-mode) 90 91 ;; ================ 92 (package! parrot) 93 (package! pacmacs) 94 (package! key-quiz) 95 (package! nyan-mode) 96 (package! fireplace) 97 (package! fretboard) 98 (package! speed-type) 99 (package! chordpro-mode)) 100 101 ;; (package! pg :recipe (:host github :repo "emarsden/pg-el") :pin "67f50311947a54913d91852ebd6880dbe68930bc") 102 ;; (package! pgmacs :recipe (:host github :repo "emarsden/pgmacs") :pin "04df50eb6cb1cc997deae9c5120ba66353601d3a") 103 104 (package! kbd-mode :recipe (:host github :repo "kmonad/kbd-mode") :pin "f8951b2efc5c29954b0105a9e57e973515125b0d") 105 (package! monet :recipe (:host github :repo "stevemolitor/monet") :pin "72a18d372fef4b0971267bf13f127dcce681859a") 106 (package! ob-duckdb :recipe (:host github :repo "gggion/ob-duckdb" :files ("*.el")) :pin "d5b6df504e63f635512a57b23afd9a37683fca40") 107 (package! kitty-graphics :recipe (:host github :repo "cashmeredev/kitty-graphics.el") :pin "f18cebbe766a5ccedebf4c07ae9a6f731a926a8d") 108 ;; (package! llm-tool-collection :recipe (:host github :repo "skissue/llm-tool-collection") :pin "6d2765a16dc10af2e1d1911bcabf6d7f287e0434") 109 ;; FIXME: Cannot open load file: No such file or directory, hydra | https://github.com/l3kn/org-fc/issues/67 110 ;; (package! org-fc :recipe (:host sourcehut :repo "l3kn/org-fc" :files (:defaults "awk" "demo.org")) :pin "22144b4c0714544e8415585a4eecd1b1b370ce22")