summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2014-08-20 22:04:12 +0100
committerAlan Pearce2014-08-20 22:04:12 +0100
commit623e348e8f34cec5a91553094ff55f36504fe3df (patch)
tree2658ed0b525be37c5345ac3c68ba48214e7f0580
parent1a828301e51f27aaa5855eff5d7d13740bd4cad8 (diff)
downloaddotfiles-623e348e8f34cec5a91553094ff55f36504fe3df.tar.lz
dotfiles-623e348e8f34cec5a91553094ff55f36504fe3df.tar.zst
dotfiles-623e348e8f34cec5a91553094ff55f36504fe3df.zip
Emacs: Enable fontification of dash keywords
-rw-r--r--tag-emacs/emacs.d/init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el
index 7350a7c..5fff78c 100644
--- a/tag-emacs/emacs.d/init.el
+++ b/tag-emacs/emacs.d/init.el
@@ -836,6 +836,11 @@ mouse-1: Display Line and Column Mode Menu"))))))
 
 ;;;; Projects
 
+(req-package dash
+  :init (setq dash-enable-fontlock t)
+  :config (progn
+            (dash--enable-fontlock 'dash-enable-font-lock t)))
+
 (req-package projectile
   :bind (("C-c C-f" . projectile-find-file)
          ("s-x s-f" . projectile-find-file)