;;; bandali-eshell.el --- bandali's Eshell setup -*- lexical-binding: t; -*-
-;; Copyright (C) 2018-2020 Amin Bandali
+;; Copyright (C) 2018-2022 Amin Bandali
;; Author: Amin Bandali <bandali@gnu.org>
;; Keywords: processes
(with-eval-after-load 'eshell
(make-directory (b/etc "eshell/") t)
- (csetq
+ (setq
eshell-aliases-file (b/etc "eshell/aliases")
eshell-directory-name (b/var "eshell/")
eshell-hist-ignoredups t
(define-key eshell-hist-mode-map (kbd "M-r")
#'b/eshell-history)))
;; global key bindings
-(global-set-key (kbd "C-c a s e") #'eshell)
+(global-set-key (kbd "C-c s e") #'eshell)
;; hooks
(add-hook 'eshell-mode-hook #'b/eshell-setup)