diff options
author | Alan Pearce | 2013-06-02 20:19:34 +0100 |
---|---|---|
committer | Alan Pearce | 2013-06-02 20:19:34 +0100 |
commit | 954a691139a1756af64e2db7091c6ea66cb92fe9 (patch) | |
tree | 1e6f405b5a588a2fef1c544b8676ad5ee852ccda /emacs/init.el | |
parent | 9e7d9adf4d10dc9437f30eb7bd49f21bb904a05b (diff) | |
download | nixfiles-954a691139a1756af64e2db7091c6ea66cb92fe9.tar.lz nixfiles-954a691139a1756af64e2db7091c6ea66cb92fe9.tar.zst nixfiles-954a691139a1756af64e2db7091c6ea66cb92fe9.zip |
Emacs: add keyboard binding for switching to eshell
Diffstat (limited to 'emacs/init.el')
-rw-r--r-- | emacs/init.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index b00aac48..e88c9233 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -732,6 +732,7 @@ Also returns nil if pid is nil." ;;;; Shells & REPLs (use-package eshell + :bind ("C-c s" . eshell) :defer t :config (progn (setq eshell-directory-name "~/.emacs.d/eshell") |