diff options
author | Alan Pearce | 2014-07-15 20:57:23 +0100 |
---|---|---|
committer | Alan Pearce | 2014-07-15 20:57:23 +0100 |
commit | bed84913585deb977b8defa406909b79f028fad5 (patch) | |
tree | 7118572d908001e3c7296a819293a26cb0c81830 /tag-emacs/emacs.d | |
parent | 80f13cdc3b95b664af1afa6e4fa33b27626a40ab (diff) | |
download | nixfiles-bed84913585deb977b8defa406909b79f028fad5.tar.lz nixfiles-bed84913585deb977b8defa406909b79f028fad5.tar.zst nixfiles-bed84913585deb977b8defa406909b79f028fad5.zip |
Emacs: Run lisp-common-mode-hook in ielm
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r-- | tag-emacs/emacs.d/init.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 97927e62..40f495e4 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -997,6 +997,12 @@ :init (progn (add-hook 'lisp-common-mode-hook #'turn-on-redshank-mode))) +(req-package ielm + :defer t + :config (progn + (add-hook 'ielm-mode-hook (lambda () + (run-hooks 'lisp-common-mode-hook))))) + (req-package slime :commands (slime) :config (progn |