summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--init.org3
1 files changed, 3 insertions, 0 deletions
diff --git a/init.org b/init.org
index 9ae1276..46c5d82 100644
--- a/init.org
+++ b/init.org
@@ -2209,8 +2209,11 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]].
(use-package yasnippet
:defer 3
:config
+ (defconst yas-verbosity-cur yas-verbosity)
+ (setq yas-verbosity 2)
(add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets")
(yas-reload-all)
+ (setq yas-verbosity yas-verbosity-cur)
:hook
(text-mode . yas-minor-mode))
#+end_src