dot-doom/packages.el

141 lines
4.2 KiB
EmacsLisp
Raw Normal View History

2023-03-05 12:03:36 -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'.
2023-10-31 11:50:28 -04:00
;; (unpin! compat)
(unpin! doom-themes)
2023-11-25 16:09:22 -05:00
(unpin! lsp-mode)
(unpin! sly)
2023-08-31 13:46:13 -04:00
(unpin! racket-mode)
(unpin! consult)
(unpin! vertico)
(unpin! embark)
(unpin! orderless)
2023-10-31 11:50:28 -04:00
(unpin! cape)
(unpin! corfu)
2024-03-25 14:18:11 -04:00
(unpin! yasnippet-capf)
2024-04-06 13:20:25 -04:00
(unpin! parinfer-rust-mode)
2023-10-31 11:50:28 -04:00
;; (unpin! geiser)
2024-04-18 14:24:42 -04:00
(unpin! vterm)
2023-08-31 13:46:13 -04:00
(package! bookmark-in-project)
2024-03-25 14:18:11 -04:00
(package! meow-vterm
:recipe (:type git
:host github
:repo "accelbread/meow-vterm"))
2024-06-06 13:30:00 -04:00
(package! meow-tree-sitter
:recipe (:type git :host github :repo "skissue/meow-tree-sitter"))
2024-06-06 13:30:00 -04:00
2024-03-25 14:18:11 -04:00
(package! kbd-mode
:recipe (:type git
:host github
:repo "kmonad/kbd-mode"))
2024-06-24 17:26:31 -04:00
(package! consult-mu
:recipe (:host nil :type git :repo "https://gt.emenel.ca/emenel/consult-mu.git" :files (:defaults "extras/*.el")))
2024-06-29 15:37:50 -04:00
(package! mu4e-overview
:recipe (:type git
:host github
:repo "mkcms/mu4e-overview"))
2024-06-24 17:26:31 -04:00
2024-03-25 14:18:11 -04:00
(package! just-mode)
(package! justl)
(package! fennel-mode)
(package! systemd)
2023-08-31 13:46:13 -04:00
(package! nerd-icons-completion)
(package! nerd-icons-dired)
(package! treemacs-nerd-icons)
2023-09-06 10:06:14 -04:00
(package! kind-icon)
2024-05-13 14:52:42 -04:00
(package! caddyfile-mode)
2023-03-05 12:03:36 -05:00
(package! obsidian)
2023-06-02 12:04:53 -04:00
(package! w3m)
2023-03-05 12:03:36 -05:00
(package! terminal-here)
(package! processing-mode)
(package! ob-p5js)
2024-01-20 11:55:12 -05:00
;; (package! tidal)
2023-03-05 12:03:36 -05:00
(package! fish-mode)
(package! smart-tabs-mode)
2023-06-02 12:04:53 -04:00
(package! sclang
2023-03-05 12:03:36 -05:00
:recipe (:local-repo "/Users/emenel/Library/Application Support/SuperCollider/downloaded-quarks/scel/el"))
2023-10-19 11:23:45 -04:00
(package! platformio-mode)
2023-10-26 12:24:53 -04:00
(package! scad-mode)
2023-10-28 12:20:30 -04:00
(package! consult-yasnippet)
2023-11-25 16:09:22 -05:00
(package! gcode-mode)
2024-03-25 14:18:11 -04:00
(package! sly-asdf)
(package! sly-quicklisp)
2023-10-28 12:20:30 -04:00
2024-05-13 14:52:42 -04:00
(package! a-janet-mode
:recipe (:type git
:host nil
:repo "https://codeberg.org/sogaiu/a-janet-mode"
:branch "main"
:files ("*.el" "*.janet" "highlights")))
(package! ajrepl
:recipe (:type git
:host github
:repo "sogaiu/ajrepl"
:files (:defaults ("ajrepl/"
"ajrepl/*"))))
(package! lisp-markup
:recipe (:local-repo "/Users/emenel/Source/_cl/markup"
:files ("*.el")))
(package! bookmark-in-project)
(package! ready-player
:recipe (:type git
:host github
:repo "xenodium/ready-player"))
2023-03-05 12:03:36 -05:00
;; 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/radian-software/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 radian-software/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)