Move eshell configuration to use-package

This commit is contained in:
Gergely Polonkai 2016-10-10 20:36:10 +02:00
parent baf1c6ce34
commit 5fc3218f4b
1 changed files with 5 additions and 4 deletions

View File

@ -219,6 +219,11 @@
("C-<" . mc/mark-previous-like-this) ("C-<" . mc/mark-previous-like-this)
("C-c C-<" . mc/mark-all-like-this))) ("C-c C-<" . mc/mark-all-like-this)))
(use-package eshell
:config
(add-hook 'eshell-mode-hook
(lambda () (local-set-key (kbd "C-d") #'eshell-C-d))))
;; Save place ;; Save place
(use-package saveplace (use-package saveplace
:config :config
@ -428,10 +433,6 @@
(187 171) ; »« (187 171) ; »«
)) ))
;; Setup eshell
(add-hook 'eshell-mode-hook
(lambda () (local-set-key (kbd "C-d") #'eshell-C-d)))
;; Stuff to do after initialization is done ;; Stuff to do after initialization is done
;; TODO: Unordered stuff ;; TODO: Unordered stuff