diff options
-rw-r--r-- | tag-emacs/emacs.d/init.org | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 12b4cab..d86e522 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -2122,6 +2122,15 @@ nice, when I remember to use it. (bind-key "C-c S" #'eshell-goto-current-dir) #+END_SRC +#+BEGIN_SRC emacs-lisp + (req-package esh-buf-stack + :require eshell + :config (progn + (bind-key "M-q" #'eshell-push-command eshell-mode-map)) + :init (progn + (setup-eshell-buf-stack))) +#+END_SRC + *** Shells #+BEGIN_SRC emacs-lisp |