enable flyspell for comments

This commit is contained in:
petrucci4prez 2018-08-18 18:07:39 -04:00
parent 19eb0a3956
commit a2c835fb15
1 changed files with 2 additions and 4 deletions

View File

@ -339,13 +339,11 @@ event of an error or nonlocal exit."
(yas-reload-all))
#+END_SRC
* languages
** flyspell
#+BEGIN_SRC emacs-lisp
(setq flyspell-issue-message-flag nil)
#+END_SRC
** progmode
#+BEGIN_SRC emacs-lisp
(add-hook 'prog-mode-hook #'prettify-symbols-mode)
(add-hook 'prog-mode-hook #'flyspell-prog-mode)
(setq flyspell-issue-message-flag nil)
#+END_SRC
** elisp
#+BEGIN_SRC emacs-lisp