diff options
author | Amin Bandali <bandali@gnu.org> | 2019-01-12 12:03:26 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-01-12 12:05:25 -0500 |
commit | 3c23b5ea17c0ee54baa7731f1f1b889be86f8abb (patch) | |
tree | ff99000e580897981d927bfe337c024cded5df98 | |
parent | cd2776993118afcb19c34e4c86f3100a9a506147 (diff) | |
download | configs-3c23b5ea17c0ee54baa7731f1f1b889be86f8abb.tar.gz configs-3c23b5ea17c0ee54baa7731f1f1b889be86f8abb.tar.xz configs-3c23b5ea17c0ee54baa7731f1f1b889be86f8abb.zip |
[emacs/yasnippet] suppress startup jit loading message
-rw-r--r-- | init.org | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |