From caefc33b81ada4109f7ddd812e1c60f7510c8a7f Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 29 Oct 2016 13:12:46 -0700 Subject: [emacs] Add settings for `shell-pop'. --- emacs.d/init.el | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'emacs.d') diff --git a/emacs.d/init.el b/emacs.d/init.el index 0f65e70..4b438a0 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -292,4 +292,15 @@ (require 'server) (unless (server-running-p) (server-start)) +(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"))) + (define-key emacs-lisp-mode-map (kbd "C-c C-r") 'eval-region) -- cgit 1.4.1