From 3c23b5ea17c0ee54baa7731f1f1b889be86f8abb Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sat, 12 Jan 2019 12:03:26 -0500 Subject: [PATCH] [emacs/yasnippet] suppress startup jit loading message --- init.org | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.20.1