10 lines
242 B
EmacsLisp
10 lines
242 B
EmacsLisp
|
;; A template system for Emacs.
|
||
|
;; https://github.com/joaotavora/yasnippet
|
||
|
(use-package yasnippet
|
||
|
:ensure t
|
||
|
:defer t
|
||
|
:config
|
||
|
(yas-reload-all)
|
||
|
(add-hook 'prog-mode-hook 'yas-minor-mode)
|
||
|
(add-hook 'text-mode-hook 'yas-minor-mode))
|