From c742ac6ae581067c6576777a1a01c63d034c15b6 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 29 Oct 2016 13:20:44 -0700 Subject: [emacs] Use `shell-pop'. --- emacs.d/init.el | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'emacs.d/init.el') diff --git a/emacs.d/init.el b/emacs.d/init.el index 624b3f4..6ec1675 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -292,6 +292,17 @@ (use-package swiper :ensure t +(use-package shell-pop + :defer t + :ensure t + :bind ("C-:" . shell-pop) + :init + (progn + (setq-default shell-pop-shell-type '("eshell" "*eshell-pop*" (lambda nil (eshell)))) + (setq-default shell-pop-window-height 30) + (setq-default shell-pop-full-span t) + (setq-default shell-pop-window-position "bottom"))) + :diminish ivy-mode :bind ("C-s" . swiper) :config -- cgit 1.4.1