added flycheck package

This commit is contained in:
ndwarshuis 2019-02-01 23:12:36 -05:00
parent 706d769d12
commit c8f9a414d6
1 changed files with 8 additions and 0 deletions

View File

@ -526,6 +526,14 @@ Flycheck will highlight and explain syntax errors in code and formatting.
flycheck-navigation-minimum-level 'warning) flycheck-navigation-minimum-level 'warning)
(delight 'flycheck-mode "γ" "flycheck")) (delight 'flycheck-mode "γ" "flycheck"))
#+END_SRC #+END_SRC
*** packaging
#+BEGIN_SRC emacs-lisp
(use-package flycheck-package
:ensure t
:after flycheck
:config
(eval-after-load 'flycheck '(flycheck-package-setup)))
#+END_SRC
** auto completion ** auto completion
Company provides a dropdown of completion options. It has many backends which are configured in each language and format elsewhere. Company provides a dropdown of completion options. It has many backends which are configured in each language and format elsewhere.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp