use-package try

This commit is contained in:
larstvei 2023-06-13 02:43:22 +02:00
parent 22ad834c41
commit 71190bc7a5

View File

@ -207,8 +207,7 @@
(let* ((package--builtins nil) (let* ((package--builtins nil)
(packages (packages
'(try ; Try out Emacs packages '(vterm ; A terminal via libvterm
vterm ; A terminal via libvterm
which-key ; Display available keybindings in popup which-key ; Display available keybindings in popup
z3-mode))) ; z3/SMTLIBv2 interactive development z3-mode))) ; z3/SMTLIBv2 interactive development
(when (memq window-system '(mac ns)) (when (memq window-system '(mac ns))
@ -1119,6 +1118,19 @@
#+end_src #+end_src
* Try
[[https://github.com/larstvei/Try][Try]] is my own package for trying out packages without installing them. It is
the most useful of my packages (IMO).
#+begin_src emacs-lisp
;; Try out Emacs packages
(use-package try
:defer t)
#+end_src
* Interactive functions * Interactive functions
<<sec:defuns>> <<sec:defuns>>