emacs.d

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

git clone git://git.shimmy1996.com/emacs.d.git
commit e6b55bc037784ab81febefd89eaf54cea1498e73
parent f6af7ab05d5223919f59f318976dc2e6003b6541
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Tue, 23 Apr 2019 15:42:11 -0400

Add cmake-mode

Diffstat:
MREADME.org | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/README.org b/README.org
@@ -831,6 +831,13 @@ Add highlighting for doxygen blocks.
     (add-hook 'c-mode-common-hook 'highlight-doxygen-mode))
 #+END_SRC
 
+** CMake-mode
+Syntax highlighting and indention for =CMakeLists.txt=.
+#+BEGIN_SRC emacs-lisp
+  (use-package cmake-mode
+    :ensure t)
+#+END_SRC
+
 ** ESS
 Use ESS (Emacs Speaks Statistics) for R and Julia support.
 #+BEGIN_SRC emacs-lisp