ADD Yasnippet hook to prog- and org-mode
This commit is contained in:
parent
0482e48c7f
commit
ee7073ea67
1 changed files with 4 additions and 1 deletions
|
|
@ -497,14 +497,17 @@ Install and wait for hydra to be available since we are using it in this init.el
|
||||||
)))
|
)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
|
||||||
** Yasnippet
|
** Yasnippet
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package yasnippet
|
(use-package yasnippet
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:hook
|
||||||
|
(prog-mode . yas-minor-mode)
|
||||||
|
(org-mode . yas-minor-mode)
|
||||||
:config
|
:config
|
||||||
(yas-reload-all)
|
(yas-reload-all)
|
||||||
(add-hook 'prog-mode-hook 'yas-minor-mode)
|
|
||||||
)
|
)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue