I often do a use package, so make it a snippet
This commit is contained in:
parent
df7f423924
commit
1ecf9aa6a2
1 changed files with 9 additions and 0 deletions
9
snippets/org-mode/emacs-lisp-use-package
Normal file
9
snippets/org-mode/emacs-lisp-use-package
Normal 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
|
Loading…
Reference in a new issue