summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2024-03-02 11:11:03 +0000
committerGrégoire Duchêne <gduchene@awhk.org>2024-03-02 11:11:03 +0000
commitf35b5cc292299279ac9774151e44516b87406523 (patch)
treea343957071f0dfe0e5681ad2f01e084237e2d050
parent6e66c069a9fcecbbc4fc0f1b294bf58f87d0678a (diff)
emacs: Ignore case when completing in Eshell
-rw-r--r--emacs/init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 86b1aae..9654a7a 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -163,7 +163,9 @@
(use-package eshell
:bind (("C-c e" . eshell))
- :custom (eshell-directory-name (my/cache-file-name "eshell")))
+ :custom ((eshell-cmpl-ignore-case t)
+ (eshell-directory-name (my/cache-file-name "eshell"))
+ (eshell-scroll-show-maximum-output nil)))
;; Go