Add key binding to start eshell

This commit is contained in:
Gergely Polonkai 2016-10-24 23:10:57 +02:00
parent 1e81fafab6
commit 4e6ebc220b
1 changed files with 4 additions and 1 deletions

View File

@ -246,7 +246,10 @@
(use-package eshell (use-package eshell
:config :config
(add-hook 'eshell-mode-hook (add-hook 'eshell-mode-hook
(lambda () (local-set-key (kbd "C-d") #'eshell-C-d)))) (lambda () (local-set-key (kbd "C-d") #'eshell-C-d)))
:bind
(:map gpolonkai/pers-map
("e" . eshell)))
;; Save place ;; Save place
(use-package saveplace (use-package saveplace