summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2024-02-18 11:47:53 +0000
committerGrégoire Duchêne <gduchene@awhk.org>2024-02-18 11:47:53 +0000
commitba4184ed1aa489599d726aa00a45ef1a3b3c84bf (patch)
tree46de34a9065dffbf55cc36d357343c1077d97c35
parent1e7cfdff800ae27cb94ba88b1324225d59a08f77 (diff)
emacs: Add Eshell configuration
-rw-r--r--emacs/init.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el
index ba96c42..bc42b36 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -159,6 +159,13 @@
(keymap-local-set "<mouse-1>" #'dired-find-file))
+;; Eshell
+
+(use-package eshell
+ :bind (("C-c e" . eshell))
+ :custom (eshell-directory-name (my/cache-file-name "eshell")))
+
+
;; Go
(use-package go-mode