emacs.d

My emacs configuration, done in a literate programming fashion using org-mode

git clone git://git.shimmy1996.com/emacs.d.git
commit 77e49ec00a73ee3d4fdef991388fcc2410edfcbf
parent 2c5afd3ed0dbca61ae93e31ad73f56086963a908
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Tue,  1 May 2018 20:22:12 -0500

Add flycheck-clang-analyzer.

Diffstat:
MREADME.org | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/README.org b/README.org
@@ -687,6 +687,17 @@ Set various parameters for the checker.
    '(flycheck-googlelint-linelength "80"))
 #+END_SRC
 
+** Set Clang Analyzer
+*** Install =flycheck-clang-analyzer=
+#+BEGIN_SRC emacs-lisp
+  (use-package flycheck-clang-analyzer
+    :ensure t
+    :init
+    (with-eval-after-load 'flycheck
+      (require 'flycheck-clang-analyzer)
+      (flycheck-clang-analyzer-setup)))
+#+END_SRC
+
 * Yasnippet
 YASnippet is a template system for Emacs. It allows you to type an
 abbreviation and automatically expand it into function templates.