summaryrefslogtreecommitdiffstats
path: root/.emacs.d
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-11-03 17:22:34 +0100
committerGravatar Tom Willemse2013-11-03 17:22:34 +0100
commit9cac262fe7ccdbd39a826f35e9749c2f34215a77 (patch)
treec6604bcc4aeaf10a3761310600921c730ddcab93 /.emacs.d
parente604e35ae28fd6496cae0d9768b821012bc1b293 (diff)
downloademacs-9cac262fe7ccdbd39a826f35e9749c2f34215a77.tar.gz
emacs-9cac262fe7ccdbd39a826f35e9749c2f34215a77.zip
Enable prettify-symbols-mode for prog-mode
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.org6
1 files changed, 6 insertions, 0 deletions
diff --git a/.emacs.d/init.org b/.emacs.d/init.org
index 0fd1f11..f98c20b 100644
--- a/.emacs.d/init.org
+++ b/.emacs.d/init.org
@@ -260,6 +260,12 @@
(add-hook 'python-mode-hook #'init-set-python-symbols)
#+END_SRC
+ Now just turn it on for =prog-mode=.
+
+ #+BEGIN_SRC emacs-lisp
+ (add-hook 'prog-mode-hook 'prettify-symbols-mode)
+ #+END_SRC
+
* Slime implementations
I usually use [[http://sbcl.org][SBCL]], but sometimes also [[http://www.clisp.org/][GNU CLISP]].