Henrik Lissner 2022-06-17 15:42:15 +02:00
parent 26d47b5ebc
commit 77e9932966
No known key found for this signature in database
GPG key ID: B60957CA074D39A3
6 changed files with 16 additions and 16 deletions

View file

@ -237,7 +237,7 @@ kind!
[nix]: https://nixos.org
[ported-vim-plugins]: modules/editor/evil/README.org#ported-vim-plugins
[ripgrep]: https://github.com/BurntSushi/ripgrep
[straight.el]: https://github.com/raxod502/straight.el
[straight.el]: https://github.com/radian-software/straight.el
[vim-easymotion]: https://github.com/easymotion/vim-easymotion
[vim-lion]: https://github.com/tommcdo/vim-lion
[vim-sneak]: https://github.com/justinmk/vim-sneak

View file

@ -480,8 +480,8 @@ Accepts the following properties:
be installed or uninstalled. Use this to pin 2nd order dependencies.
:recipe RECIPE
Specifies a straight.el recipe to allow you to acquire packages from external
sources. See https://github.com/raxod502/straight.el#the-recipe-format for
details on this recipe.
sources. See https://github.com/radian-software/straight.el#the-recipe-format
for details on this recipe.
:disable BOOL
Do not install or update this package AND disable all of its `use-package!'
and `after!' blocks.

View file

@ -13,11 +13,11 @@
(package! straight
:type 'core
:recipe `(:host github
:repo "raxod502/straight.el"
:repo "radian-software/straight.el"
:branch ,straight-repository-branch
:local-repo "straight.el"
:files ("straight*.el"))
:pin "e2de88ea0e7ccf9f4846e9e756f86e0dcf469c44")
:pin "0e204d418d11e00006b83ff56ce7df03efc6046a")
;; core-modules.el
(package! use-package
@ -25,7 +25,7 @@
:pin "a7422fb8ab1baee19adb2717b5b47b9c3812a84c")
;; core-ui.el
(package! all-the-icons :pin "65c496d3d1d1298345beb9845840067bffb2ffd8")
(package! all-the-icons :pin "ca1ef30004d3fb76aaa70bd47cb83e9fe017a7f7")
(package! hide-mode-line :pin "bc5d293576c5e08c29e694078b96a5ed85631942")
(package! highlight-numbers :pin "8b4744c7f46c72b1d3d599d4fb75ef8183dee307")
(package! rainbow-delimiters :pin "a32b39bdfe6c61c322c37226d66e1b6d4f107ed0")
@ -33,10 +33,10 @@
;; core-editor.el
(package! better-jumper :pin "47622213783ece37d5337dc28d33b530540fc319")
(package! dtrt-indent :pin "66fc30af02901db023e464a24d2b5fb3ff472794")
(package! helpful :pin "67cdd1030b3022d3dc4da2297f55349da57cde01")
(package! dtrt-indent :pin "57f4072fa8acd5f7af40b11f5f33607bca324fe1")
(package! helpful :pin "209971ba9f576ba080352642cfbf25df5692b1d7")
(package! pcre2el :pin "0b5b2a2c173aab3fd14aac6cf5e90ad3bf58fa7d")
(package! smartparens :pin "37f77bf2e2199be9fe27e981317b02cfd0e8c70e")
(package! smartparens :pin "ec15aaa748b21c9b8453dd95604ccc95fc1138cf")
(package! ws-butler
;; Use my fork of ws-butler, which has a few choice improvements and
;; optimizations (the original has been abandoned).
@ -44,9 +44,9 @@
:pin "572a10c11b6cb88293de48acbb59a059d36f9ba5")
;; core-projects.el
(package! projectile :pin "f3468e8d20b9d3c0da58fe5d779bd2ff35e310a9")
(package! project :pin "4fe1eec8035969d59ab461eb1674343378182a0b")
(package! projectile :pin "4d6da873ae54dbf6043b015efd9b737e2ce152c6")
(package! project :pin "c52ec9368928eb7ef321fd6af082832494c20a3b")
;; core-keybinds.el
(package! general :pin "9651024e7f40a8ac5c3f31f8675d3ebe2b667344")
(package! which-key :pin "1217db8c6356659e67b35dedd9f5f260c06f6e99")
(package! which-key :pin "1ab1d0cc88843c9a614ed3226c5a1070e32e4823")

View file

@ -11,7 +11,7 @@
;; 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/raxod502/straight.el#the-recipe-format
;; https://github.com/radian-software/straight.el#the-recipe-format
;(package! another-package
; :recipe (:host github :repo "username/repo"))
@ -34,7 +34,7 @@
;; 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 raxod502/straight.el#279)
;; 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.

View file

@ -389,7 +389,7 @@ results buffer.")
'(literal regexp initialism fuzzy)
'(literal regexp initialism)))
:config
;; REVIEW Remove when raxod502/prescient.el#102 is resolved
;; REVIEW Remove when radian-software/prescient.el#102 is resolved
(add-to-list 'ivy-sort-functions-alist '(ivy-resume))
(setq ivy-prescient-sort-commands
'(:not swiper swiper-isearch ivy-switch-buffer lsp-ivy-workspace-symbol

View file

@ -38,7 +38,7 @@
(set-repl-handler! 'clojurescript-mode #'+clojure/open-cljs-repl :persist t)
(set-eval-handler! '(clojure-mode clojurescript-mode clojurec-mode) #'cider-eval-region))
;; HACK Fix raxod502/radian#446: CIDER tries to calculate the frame's
;; HACK Fix radian-software/radian#446: CIDER tries to calculate the frame's
;; background too early; sometimes before the initial frame has been
;; initialized, causing errors.
(defvar cider-docview-code-background-color nil)