Commit 7f89ea7385ea

Vincent Demeester <vincent+git@demeester.fr>
2014-08-09 16:33:57
Add rainbow-identifiers to prog-modes
1 parent 4980289
Changed files (1)
.emacs.d
.emacs.d/emacs.org
@@ -394,6 +394,19 @@
                  'turn-on-pretty-mode)
      #+END_SRC
 
+**** DONE raindow-identifiers
+
+     I read an intersting article about [[https://medium.com/p/3a6db2743a1e/][how to make syntax highlighting more useful]]
+     and I really like the concept. And guess what, there's a mode for that.
+
+
+     #+BEGIN_SRC emacs-lisp
+       (require-package 'rainbow-identifiers)
+       (add-hook 'prog-mode-hook
+                 (lambda() (rainbow-identifiers-mode)))
+     #+END_SRC
+
+
 **** PROGRESS Dired
 
      Dired is really a cool mode, let's enhance it.