chore(text-editing): minor tweak and cleanup of yasnippet setup

This commit is contained in:
2020-09-10 20:24:18 +01:00
parent 298587d35d
commit 374103bc25

View File

@@ -6,12 +6,17 @@
;;; Code:
(use-package yasnippet-snippets
:defer t)
(use-package yasnippet
:hook (emacs-startup . yas-global-mode)
:diminish yas-minor-mode)
:diminish yas-minor-mode
:hook
(prog-mode . yas-minor-mode)
:config
(yas-reload-all))
(use-package yasnippet-snippets
:defer t
:after (yasnippet))
(provide 'siren-yasnippet)
;;; siren-yasnippet.el ends here