Consistent straight access to github/gitlab projects

This is just a clean up.
This commit is contained in:
Howard Abrams 2022-08-09 09:57:20 -07:00
parent 515ef3401f
commit 30d151bd1f
5 changed files with 9 additions and 9 deletions

View file

@ -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 hasnt 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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -121,7 +121,7 @@ While Racket, as a Scheme, should work with Geiser (below), lets 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)))