diff options
-rw-r--r-- | emacs.d/init.el | 11 |
1 files changed, 11 insertions, 0 deletions
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 |