projects
/
~bandali
/
configs
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd27769
)
[emacs/yasnippet] suppress startup jit loading message
author
Amin Bandali
<bandali@gnu.org>
Sat, 12 Jan 2019 17:03:26 +0000
(12:03 -0500)
committer
Amin Bandali
<bandali@gnu.org>
Sat, 12 Jan 2019 17:05:25 +0000
(12:05 -0500)
init.org
patch
|
blob
|
blame
|
history
diff --git
a/init.org
b/init.org
index
9ae1276
..
46c5d82
100644
(file)
--- 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