diff options
author | Alan Pearce | 2014-08-20 22:04:12 +0100 |
---|---|---|
committer | Alan Pearce | 2014-08-20 22:04:12 +0100 |
commit | 623e348e8f34cec5a91553094ff55f36504fe3df (patch) | |
tree | 2658ed0b525be37c5345ac3c68ba48214e7f0580 /tag-emacs | |
parent | 1a828301e51f27aaa5855eff5d7d13740bd4cad8 (diff) | |
download | nixfiles-623e348e8f34cec5a91553094ff55f36504fe3df.tar.lz nixfiles-623e348e8f34cec5a91553094ff55f36504fe3df.tar.zst nixfiles-623e348e8f34cec5a91553094ff55f36504fe3df.zip |
Emacs: Enable fontification of dash keywords
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 7350a7c5..5fff78c1 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) |