[Emacs] Fix flycheck start whenever programming mode used

This commit is contained in:
Ivan Malison 2017-09-08 12:51:01 -07:00
parent be630b620c
commit 96c8d729c3
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -2088,7 +2088,7 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
#+BEGIN_SRC emacs-lisp
(use-package flycheck
:commands flycheck-mode
:init (add-hook 'prog-major-mode 'flycheck-mode)
:init (add-hook 'prog-mode-hook 'flycheck-mode)
:config
(progn
(use-package flycheck-package
@ -4724,6 +4724,8 @@ Ensure all themes that I use are installed:
(use-package doom-themes
:defer t)
(use-package badwolf-theme)
#+END_SRC
** all-the-icons
#+BEGIN_SRC emacs-lisp