Fuco1/smartparens@7f5825d -> Fuco1/smartparens@63695c6 bbatsov/projectile@d1cfad0 -> bbatsov/projectile@c31bd41 domtronn/all-the-icons.el@6917b08 -> domtronn/all-the-icons.el@9aa16ae iqbalansari/restart-emacs@e570749 -> iqbalansari/restart-emacs@1607da2 jscheid/dtrt-indent@a7ade6d -> jscheid/dtrt-indent@854b9a1 justbur/emacs-which-key@ca268fd -> justbur/emacs-which-key@428aedf jwiegley/use-package@caa92f1 -> jwiegley/use-package@365c73d raxod502/straight.el@3277e1c -> raxod502/straight.el@a32c97c + Closes #4513 + Fixes (wrong-number-of-arguments (3 . 4) 2) error for users on Emacs HEAD (see bbatsov/projectile#1635). + package! :build semantics have changed due to upstream changes. What was :build is now :pre-build. What was :no-build is now :build nil. + Now we must be careful not to auto-disable the "use-package" psuedo theme. It is used as a place to store :custom assignments without them being saved to custom.el.
58 lines
2.3 KiB
EmacsLisp
58 lines
2.3 KiB
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; core/packages.el
|
|
|
|
;; core.el
|
|
(package! auto-minor-mode :pin "17cfa1b54800fdef2975c0c0531dad34846a5065")
|
|
(package! gcmh :pin "0089f9c3a6d4e9a310d0791cf6fa8f35642ecfd9")
|
|
(package! explain-pause-mode
|
|
:recipe (:host github
|
|
:repo "lastquestion/explain-pause-mode")
|
|
:pin "2356c8c3639cbeeb9751744dbe737267849b4b51")
|
|
|
|
;; core-packages.el
|
|
(package! straight
|
|
:type 'core
|
|
:recipe `(:host github
|
|
:repo "raxod502/straight.el"
|
|
:branch ,straight-repository-branch
|
|
:local-repo "straight.el"
|
|
:files ("straight*.el"))
|
|
:pin "a32c97cb427b7f14dfd066f36a58d1740e20ed69")
|
|
|
|
;; core-modules.el
|
|
(package! use-package
|
|
:type 'core
|
|
:pin "365c73d2618dd0040a32c2601c5456ab5495b812")
|
|
|
|
;; core-ui.el
|
|
(package! all-the-icons :pin "9aa16ae198073fe839a0abfa9a7d3a9dc85ef5f9")
|
|
(package! hide-mode-line :pin "88888825b5b27b300683e662fa3be88d954b1cea")
|
|
(package! highlight-numbers :pin "8b4744c7f46c72b1d3d599d4fb75ef8183dee307")
|
|
(package! rainbow-delimiters :pin "f43d48a24602be3ec899345a3326ed0247b960c6")
|
|
(package! restart-emacs :pin "1607da2bc657fe05ae01f7fdf26f716eafead02c")
|
|
|
|
;; core-editor.el
|
|
(package! better-jumper :pin "e3a6546aa626b9a79ae451c88f44cf26f9d1a919")
|
|
(package! dtrt-indent :pin "854b9a1ce93d9926018a0eb18e6e552769c5407d")
|
|
(package! helpful :pin "584ecc887bb92133119f93a6716cdf7af0b51dca")
|
|
(package! pcre2el :pin "0b5b2a2c173aab3fd14aac6cf5e90ad3bf58fa7d")
|
|
(package! smartparens :pin "63695c64233d215a92bf08e762f643cdb595bdd9")
|
|
(package! so-long
|
|
:built-in 'prefer ; included in Emacs 27+
|
|
;; REVIEW so-long is slated to be published to ELPA eventually, but until then
|
|
;; I've created my own mirror for it because git.savannah.gnu.org runs
|
|
;; on a potato.
|
|
:recipe (:host github :repo "hlissner/emacs-so-long")
|
|
:pin "ed666b0716f60e8988c455804de24b55919e71ca")
|
|
(package! ws-butler
|
|
;; Use my fork of ws-butler, which has a few choice improvements and
|
|
;; optimizations (the original has been abandoned).
|
|
:recipe (:host github :repo "hlissner/ws-butler")
|
|
:pin "2bb49d3ee7d2cba133bc7e9cdac416cd1c5e4fe0")
|
|
|
|
;; core-projects.el
|
|
(package! projectile :pin "c31bd41c0b9d6fba8837ebfd3a31dec0b3cd73c6")
|
|
|
|
;; core-keybinds.el
|
|
(package! general :pin "a0b17d207badf462311b2eef7c065b884462cb7c")
|
|
(package! which-key :pin "428aedfce0157920814fbb2ae5d00b4aea89df88")
|