From c8f9a414d676862fe139c8d2a0ab024dfb8e30b6 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Fri, 1 Feb 2019 23:12:36 -0500 Subject: [PATCH] added flycheck package --- conf.org | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/conf.org b/conf.org index 8c5ca5e..6b40738 100644 --- a/conf.org +++ b/conf.org @@ -526,6 +526,14 @@ Flycheck will highlight and explain syntax errors in code and formatting. flycheck-navigation-minimum-level 'warning) (delight 'flycheck-mode "γ" "flycheck")) #+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 Company provides a dropdown of completion options. It has many backends which are configured in each language and format elsewhere. #+BEGIN_SRC emacs-lisp