commit 2373a6a9457beae3f24b0727f47945fe5e73f9fc
parent be94e0679bab91c7eb1ee098e031516da6aacfa5
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date: Sat, 8 Sep 2018 01:13:35 -0400
Add doxygen highlighting support.
Diffstat:
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/README.org b/README.org
@@ -622,7 +622,7 @@ Install =flycheck=.
:init (global-flycheck-mode))
#+END_SRC
-*** Set C++ Standard Library
+*** Set C++ Standard
Use =c++17= as the C++ standard. =cppcheck= only support C++ 14 so far however.
#+BEGIN_SRC emacs-lisp
(add-hook 'c++-mode-hook
@@ -795,6 +795,15 @@ Use Google's C++ style.
(custom-set-variables '(clang-format-style "Google"))
#+END_SRC
+*** Doxygen Highlighting
+Add highlighting for doxygen blocks.
+#+BEGIN_SRC emacs-lisp
+ (use-package highlight-doxygen
+ :ensure t
+ :init
+ (add-hook 'c-mode-common-hook 'highlight-doxygen-mode))
+#+END_SRC
+
** ESS
Emacs Speaks Statistics (ESS) is an add-on package for emacs text editors such as GNU Emacs and XEmacs. It is designed to support editing of scripts and interaction with various statistical analysis programs such as R, S-Plus, SAS, Stata and OpenBUGS/JAGS.
#+BEGIN_SRC emacs-lisp