Skip to content

Commit

Permalink
added ":straight nil" to use-package forms that straight cannot handle
Browse files Browse the repository at this point in the history
  • Loading branch information
emacs18 committed Aug 21, 2021
1 parent 6205d29 commit 0813c8d
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 3 deletions.
2 changes: 2 additions & 0 deletions layers/+completion/helm/packages.el
Expand Up @@ -396,6 +396,7 @@

(defun helm/init-helm-spacemacs-help ()
(use-package helm-spacemacs-help
:straight nil
:commands (helm-spacemacs-help-dotspacemacs
helm-spacemacs-help
helm-spacemacs-help-faq
Expand All @@ -414,6 +415,7 @@

(defun helm/init-helm-spacemacs-faq ()
(use-package helm-spacemacs-faq
:straight nil
:commands helm-spacemacs-help-faq
:init (spacemacs/set-leader-keys "h f" 'helm-spacemacs-help-faq)))

Expand Down
1 change: 1 addition & 0 deletions layers/+completion/ivy/packages.el
Expand Up @@ -304,6 +304,7 @@

(defun ivy/init-ivy-spacemacs-help ()
(use-package ivy-spacemacs-help
:straight nil
:commands (ivy-spacemacs-help-dotspacemacs
ivy-spacemacs-help
ivy-spacemacs-help-faq
Expand Down
5 changes: 4 additions & 1 deletion layers/+distributions/spacemacs-bootstrap/packages.el
Expand Up @@ -585,7 +585,8 @@ Press \\[which-key-toggle-persistent] to hide."
;; pre packages

(defun spacemacs-bootstrap/init-evil-evilified-state ()
(use-package evil-evilified-state)
(use-package evil-evilified-state
:straight nil)
(define-key evil-evilified-state-map (kbd dotspacemacs-leader-key)
spacemacs-default-map))

Expand All @@ -597,6 +598,7 @@ Press \\[which-key-toggle-persistent] to hide."
(defun spacemacs-bootstrap/init-holy-mode ()
(spacemacs|unless-dumping-and-eval-after-loaded-dump holy-mode
(use-package holy-mode
:straight nil
:commands holy-mode
:init
(progn
Expand All @@ -619,6 +621,7 @@ Press \\[which-key-toggle-persistent] to hide."
(defun spacemacs-bootstrap/init-hybrid-mode ()
(spacemacs|unless-dumping-and-eval-after-loaded-dump hybrid-mode
(use-package hybrid-mode
:straight nil
:config
(progn
(when (eq 'hybrid dotspacemacs-editing-style) (hybrid-mode))
Expand Down
3 changes: 3 additions & 0 deletions layers/+emacs/org/packages.el
Expand Up @@ -116,6 +116,7 @@

(defun org/init-ob ()
(use-package ob
:straight nil
:defer t
:init
(progn
Expand Down Expand Up @@ -480,6 +481,7 @@ Will work on both org-mode and any mode that accepts plain html."

(defun org/init-org-agenda ()
(use-package org-agenda
:straight nil
:defer t
:init
(progn
Expand Down Expand Up @@ -655,6 +657,7 @@ Headline^^ Visit entry^^ Filter^^ Da

(defun org/init-org-expiry ()
(use-package org-expiry
:straight nil
:commands (org-expiry-insinuate
org-expiry-deinsinuate
org-expiry-insert-created
Expand Down
1 change: 1 addition & 0 deletions layers/+lang/sql/packages.el
Expand Up @@ -205,6 +205,7 @@

(defun sql/init-sqlfmt ()
(use-package sqlfmt
:straight nil
:commands sqlfmt-buffer
:init
(spacemacs/declare-prefix-for-mode 'sql-mode "m=" "formatting")
Expand Down
2 changes: 2 additions & 0 deletions layers/+spacemacs/spacemacs-defaults/packages.el
Expand Up @@ -149,6 +149,7 @@

(defun spacemacs-defaults/init-dired-x ()
(use-package dired-x
:straight nil
:commands (dired-jump
dired-jump-other-window
dired-omit-mode)))
Expand Down Expand Up @@ -238,6 +239,7 @@

(defun spacemacs-defaults/init-image-mode ()
(use-package image-mode
:straight nil
:defer t
:init
(progn
Expand Down
1 change: 1 addition & 0 deletions layers/+spacemacs/spacemacs-editing/packages.el
Expand Up @@ -457,6 +457,7 @@

(defun spacemacs-editing/init-spacemacs-whitespace-cleanup ()
(use-package spacemacs-whitespace-cleanup
:straight nil
:commands (spacemacs-whitespace-cleanup-mode
global-spacemacs-whitespace-cleanup-mode)
:init
Expand Down
3 changes: 2 additions & 1 deletion layers/+spacemacs/spacemacs-evil/packages.el
Expand Up @@ -378,7 +378,8 @@

(defun spacemacs-evil/init-evil-unimpaired ()
;; No laziness here, unimpaired bindings should be available right away.
(use-package evil-unimpaired))
(use-package evil-unimpaired
:straight nil))

(defun spacemacs-evil/init-evil-visual-mark-mode ()
(use-package evil-visual-mark-mode
Expand Down
1 change: 1 addition & 0 deletions layers/+spacemacs/spacemacs-modeline/packages.el
Expand Up @@ -71,6 +71,7 @@

(defun spacemacs-modeline/init-spaceline ()
(use-package spaceline-config
:straight nil
:if (memq (spacemacs/get-mode-line-theme-name)
'(spacemacs all-the-icons custom))
:init
Expand Down
1 change: 1 addition & 0 deletions layers/+spacemacs/spacemacs-navigation/packages.el
Expand Up @@ -320,6 +320,7 @@

(defun spacemacs-navigation/init-info+ ()
(use-package info+
:straight nil
:defer t
:init
(progn
Expand Down
4 changes: 3 additions & 1 deletion layers/+spacemacs/spacemacs-purpose/packages.el
Expand Up @@ -113,7 +113,9 @@
"wpP" #'pupo/close-all-windows)
(pupo-mode))))
(defun spacemacs-purpose/init-spacemacs-purpose-popwin ()
(use-package spacemacs-purpose-popwin :commands pupo-mode))
(use-package spacemacs-purpose-popwin
:straight nil
:commands pupo-mode))

(defun spacemacs-purpose/init-window-purpose ()
(use-package window-purpose
Expand Down

0 comments on commit 0813c8d

Please sign in to comment.