From 911e8f48ce7fcb0d26852c5a71182df890001a69 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Tue, 19 Oct 2021 21:42:28 +0200 Subject: [PATCH] [Emacs] Fix some issues with package building with straight --- org/config/emacs.org | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/org/config/emacs.org b/org/config/emacs.org index cc0738b..4ac4d05 100644 --- a/org/config/emacs.org +++ b/org/config/emacs.org @@ -2875,7 +2875,7 @@ since org is an Emacs package, that also means it can be greatly extended however we like! #+begin_src emacs-lisp (use-package org - :straight (:build t) + :straight t :defer t :commands (orgtbl-mode) :hook ((org-mode . visual-line-mode) @@ -4933,7 +4933,8 @@ fonts might not be available, so you’ll need to install them with the command ~M-x all-the-icons-install-fonts~. #+begin_src emacs-lisp (use-package all-the-icons - :defer t) + :defer t + :straight t) #+end_src ~prettify-symbols-mode~ is also a nifty feature of Emacs, and it is @@ -5002,6 +5003,7 @@ configuration to make it bépo-compatible. #+begin_src emacs-lisp (use-package avy :defer t + :straight t :config (setq avy-keys '(?a ?u ?i ?e ?c ?t ?s ?r ?n)) :general @@ -5060,6 +5062,8 @@ quickly find files across my filesystem. :END: #+begin_src emacs-lisp (use-package keycast + :defer t + :straight (:build t) :config (define-minor-mode keycast-mode "Show current command and its key binding in the mode line." @@ -5078,6 +5082,7 @@ Who would get interested in Emacs and not want to read the SICP? Moreover, inside Emacs? #+begin_src emacs-lisp (use-package sicp + :straight (:build t) :defer t) #+end_src