diff options
author | Case Duckworth | 2021-09-06 23:49:00 -0500 |
---|---|---|
committer | Case Duckworth | 2021-09-06 23:49:24 -0500 |
commit | 429667cd4a3c1f9a4dd8b02605ffad9907afc726 (patch) | |
tree | d823bbce3d91e89d4955aab4eaf9da2af356754b | |
parent | Add edit-indirect (diff) | |
download | emacs-429667cd4a3c1f9a4dd8b02605ffad9907afc726.tar.gz emacs-429667cd4a3c1f9a4dd8b02605ffad9907afc726.zip |
Hook eros and macrostep into lisp-interaction-mode
-rw-r--r-- | init.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/init.el b/init.el index ac9bf58..b438e73 100644 --- a/init.el +++ b/init.el | |||
@@ -839,7 +839,8 @@ AKA, DO NOT USE THIS FUNCTION!!!" | |||
839 | )) | 839 | )) |
840 | 840 | ||
841 | (setup (:straight eros) | 841 | (setup (:straight eros) |
842 | (:hook-into emacs-lisp-mode)) | 842 | (:hook-into emacs-lisp-mode |
843 | lisp-interaction-mode)) | ||
843 | 844 | ||
844 | (setup eshell | 845 | (setup eshell |
845 | (:also-load acdw-eshell | 846 | (:also-load acdw-eshell |
@@ -1177,7 +1178,8 @@ browser defined in `browse-url-secondary-browser-function'." | |||
1177 | (:file-match (rx ".lua" eos))) | 1178 | (:file-match (rx ".lua" eos))) |
1178 | 1179 | ||
1179 | (setup (:straight macrostep) | 1180 | (setup (:straight macrostep) |
1180 | (define-key emacs-lisp-mode-map (kbd "C-c e") #'macrostep-expand)) | 1181 | (define-key emacs-lisp-mode-map (kbd "C-c e") #'macrostep-expand) |
1182 | (define-key lisp-interaction-mode-map (kbd "C-c e") #'macrostep-expand)) | ||
1181 | 1183 | ||
1182 | (setup (:straight magit) | 1184 | (setup (:straight magit) |
1183 | (:global "C-c g" #'magit-status) | 1185 | (:global "C-c g" #'magit-status) |