diff --git a/ha-config.org b/ha-config.org index a37802c..755397e 100644 --- a/ha-config.org +++ b/ha-config.org @@ -94,7 +94,7 @@ Rewriting my shell scripts in Emacs Lisp uses my [[https://gitlab.com/howardabra #+begin_src emacs-lisp (use-package piper - :straight (:type git :protocol ssh :host gitlab :repo "howardabrams/emacs-piper") + :straight (:host gitlab :repo "howardabrams/emacs-piper") :commands piper shell-command-to-list ; I use this function often :bind (:map evil-normal-state-map ("C-M-|" . piper) @@ -115,7 +115,7 @@ Seems the best [[https://github.com/hlissner/doom-snippets][collection of snippe #+begin_src emacs-lisp (use-package doom-snippets :after yasnippet - :straight (:type git :protocol ssh :host github :repo "doomemacs/snippets") + :straight (:host github :repo "doomemacs/snippets") :config (add-to-list 'yas-snippet-dirs (thread-last user-emacs-directory (expand-file-name "straight") @@ -930,7 +930,7 @@ One of the reasons that Consult hasn’t been too important to me, is that I oft #+begin_src emacs-lisp (use-package consult-projectile :after consult general - :straight (consult-projectile :type git :host gitlab :repo "OlMon/consult-projectile" :branch "master") + :straight (:host gitlab :repo "OlMon/consult-projectile" :branch "master") :config (ha-leader "p ." '("switch to..." . consult-projectile) @@ -1483,7 +1483,7 @@ Using the [[https://github.com/emacsmirror/gist][gist package]] to write code sn The gist project depends on the [[https://github.com/sigma/gh.el][gh library]]. There seems to be a problem with it. #+begin_src emacs-lisp :tangle no (use-package gh - :straight (:type git :host :github :repo "sigma/gh.el")) + :straight (:host github :repo "sigma/gh.el")) #+end_src *** Forge @@ -1698,7 +1698,7 @@ When having your point on a key entry, you can copy fields to kill-ring using: Making demonstrations /within/ Emacs with my [[https://github.com/howardabrams/demo-it][demo-it]] project. While on MELPA, I want to use my own cloned version to make sure I can keep debugging it. #+begin_src emacs-lisp (use-package demo-it - :straight (:type git :protocol ssh :host github :repo "howardabrams/demo-it") + :straight (:host github :repo "howardabrams/demo-it") :commands (demo-it-create demo-it-start)) #+end_src ** PDF Viewing diff --git a/ha-display.org b/ha-display.org index c814c03..95289d8 100644 --- a/ha-display.org +++ b/ha-display.org @@ -104,7 +104,7 @@ Large screen, lots of windows, so where is the cursor? While I used to use =hl-l #+begin_src emacs-lisp (use-package pulsar - :straight (:type git :protocol ssh :host gitlab :repo "protesilaos/pulsar") + :straight (:host gitlab :repo "protesilaos/pulsar") :custom (pulsar-pulse-functions '(recenter-top-bottom move-to-window-line-top-bottom diff --git a/ha-org-word-processor.org b/ha-org-word-processor.org index 0e96b00..701776d 100644 --- a/ha-org-word-processor.org +++ b/ha-org-word-processor.org @@ -264,7 +264,7 @@ The [[https://github.com/TonCherAmi/org-padding][org-padding]] project looks pla #+begin_src emacs-lisp (use-package org-padding - :straight (:type git :protocol ssh :host github :repo "TonCherAmi/org-padding") + :straight (:host github :repo "TonCherAmi/org-padding") :hook (org-mode . org-padding-mode) :config diff --git a/ha-org.org b/ha-org.org index cb348b6..374cd48 100644 --- a/ha-org.org +++ b/ha-org.org @@ -871,7 +871,7 @@ The [[https://github.com/rnkn/olivetti][olivetti project]] sets wide margins and Trying out [[https://protesilaos.com/][Protesilaos Stavrou]]’s [[https://protesilaos.com/emacs/logos][logos project]] as a replacement for [[https://github.com/joostkremers/writeroom-mode][Writeroom-mode]]: #+begin_src emacs-lisp (use-package logos - :straight (:type git :protocol ssh :host gitlab :repo "protesilaos/logos") + :straight (:host gitlab :repo "protesilaos/logos") :init (setq logos-outlines-are-pages t logos-outline-regexp-alist diff --git a/ha-programming-scheme.org b/ha-programming-scheme.org index da0b982..4a3225c 100644 --- a/ha-programming-scheme.org +++ b/ha-programming-scheme.org @@ -121,7 +121,7 @@ While Racket, as a Scheme, should work with Geiser (below), let’s also get [[h Can we get Racket working with Org? #+begin_src emacs-lisp (use-package ob-racket - :straight (:type git :protocol ssh :host github :repo "DEADB17/ob-racket") + :straight (:host github :repo "DEADB17/ob-racket") :after org :config (add-to-list 'org-babel-load-languages '(racket . t)))