I often do a use package, so make it a snippet

This commit is contained in:
Howard Abrams 2025-01-16 11:45:02 -08:00
parent df7f423924
commit 1ecf9aa6a2

View file

@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: emacs-lisp-use-package
# key: <slu
# --
#+BEGIN_SRC emacs-lisp
(use-package ${1:package}
:straight (:type git ${2::host ${3:github}} :repo "${4:repo}")
$0)
#+END_SRC