Replace quelpa with `vc-use-package`

This commit is contained in:
Adam Goldsmith 2024-01-12 00:18:32 -05:00
parent d63c58b12e
commit 140a490ad9
1 changed files with 7 additions and 10 deletions

View File

@ -37,11 +37,8 @@
:config :config
(setq use-package-check-before-init t (setq use-package-check-before-init t
use-package-always-defer t)) use-package-always-defer t))
(use-package quelpa :ensure :demand (unless (package-installed-p 'vc-use-package)
:init (package-vc-install "https://github.com/slotThe/vc-use-package"))
(setq quelpa-update-melpa-p nil)
:config
(use-package quelpa-use-package :ensure :demand))
;;;; not sure where to put this ;;;; not sure where to put this
(defun open-thunar-in-current-directory () (defun open-thunar-in-current-directory ()
@ -553,7 +550,7 @@
(add-to-list 'popwin:special-display-config '(help-mode :stick t))) (add-to-list 'popwin:special-display-config '(help-mode :stick t)))
(use-package dired+ (use-package dired+
:quelpa (dired+ :fetcher github :repo "emacsmirror/dired-plus") :vc (:fetcher github :repo emacsmirror/dired-plus)
:init :init
(setq diredp-hide-details-initially-flag nil) (setq diredp-hide-details-initially-flag nil)
:config :config
@ -658,7 +655,7 @@
(setq lsp-java-save-action-organize-imports nil))) (setq lsp-java-save-action-organize-imports nil)))
(use-package indent-bars (use-package indent-bars
:quelpa (indent-bars :fetcher github :repo "jdtsmith/indent-bars") :vc (:fetcher github :repo jdtsmith/indent-bars)
:custom :custom
(indent-bars-treesit-support t) (indent-bars-treesit-support t)
(indent-bars-no-descend-string t) (indent-bars-no-descend-string t)
@ -925,7 +922,7 @@
(use-package nm (use-package nm
:if (executable-find "notmuch") :if (executable-find "notmuch")
:quelpa (nm :fetcher github :repo "ad1217/nevermore") :vc (:fetcher github :repo ad1217/nevermore)
:bind (:map nm-mode-map :bind (:map nm-mode-map
("n" . nm-read) ("n" . nm-read)
("s" . nm-spam) ("s" . nm-spam)
@ -1033,7 +1030,7 @@
(use-package org-lookup-dnd (use-package org-lookup-dnd
:if (file-exists-p "~/Documents/DnD/dnd-phb-5e-index/indexes.org") :if (file-exists-p "~/Documents/DnD/dnd-phb-5e-index/indexes.org")
:quelpa (org-lookup-dnd :fetcher gitlab :repo "ad1217/org-lookup-dnd" :branch "no-pdfview") :vc (:fetcher gitlab :repo ad1217/org-lookup-dnd :rev no-pdfview)
:bind (:map org-mode-map ("C-c d" . org-lookup-dnd-at-point)) :bind (:map org-mode-map ("C-c d" . org-lookup-dnd-at-point))
:config :config
(setq org-lookup-dnd-chose 'org-lookup-dnd-chose-ivy (setq org-lookup-dnd-chose 'org-lookup-dnd-chose-ivy
@ -1108,7 +1105,7 @@
(apheleia-global-mode t)) (apheleia-global-mode t))
(use-package smali-mode (use-package smali-mode
:quelpa (smali-mode :fetcher github :repo "strazzere/Emacs-Smali") :vc (:fetcher github :repo strazzere/Emacs-Smali)
:if (package-installed-p 'smali-mode) :if (package-installed-p 'smali-mode)
:autoload smali-mode :autoload smali-mode
:mode "\\.smali\\'") :mode "\\.smali\\'")