summaryrefslogtreecommitdiffstats
path: root/.emacs.d/init.org
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-11-26 01:53:31 +0100
committerGravatar Tom Willemse2013-11-26 01:53:31 +0100
commitdf4d655be52d87b97d8df62b889b7c64f65ded41 (patch)
treecb66b222bf301f82ed79b290dc7bd5f0714a7b4e /.emacs.d/init.org
parentf77d5e025439679af5630337bcd3576827da5a02 (diff)
downloademacs-df4d655be52d87b97d8df62b889b7c64f65ded41.tar.gz
emacs-df4d655be52d87b97d8df62b889b7c64f65ded41.zip
Bring back mozrepl!
Diffstat (limited to '.emacs.d/init.org')
-rw-r--r--.emacs.d/init.org10
1 files changed, 10 insertions, 0 deletions
diff --git a/.emacs.d/init.org b/.emacs.d/init.org
index 6a1de3f..36e9983 100644
--- a/.emacs.d/init.org
+++ b/.emacs.d/init.org
@@ -86,6 +86,7 @@
'("~/.emacs.d/site-lisp" "~/projects/emacs/pony-mode/src"
"~/.emacs.d/vendor-lisp/org/lisp"
"~/.emacs.d/vendor-lisp/org/contrib/lisp"
+ "~/.emacs.d/vendor-lisp/mozrepl"
"~/.emacs.d/vendor-lisp/eap" "/usr/share/emacs/site-lisp")))
#+END_SRC
@@ -457,3 +458,12 @@
#+BEGIN_SRC emacs-lisp
(add-hook 'c-mode-hook #'smartparens-strict-mode)
#+END_SRC
+
+* Autoload and start moz-minor-mode
+
+ When using javascript, mozrepl is awesome.
+
+ #+BEGIN_SRC emacs-lisp
+ (autoload 'moz-minor-mode "moz" nil t)
+ (add-hook 'javascript-mode-hook 'moz-minor-mode)
+ #+END_SRC