Skip to content
Snippets Groups Projects
Commit 056754d1 authored by Liu Miao's avatar Liu Miao
Browse files

add eshell configuration

parent 613869a4
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,19 @@
"gs" 'magit-status
"gd" 'magit-diff-range))
;;; Shell
(use-package eshell
:ensure nil
:init
(setq eshell-scroll-to-bottom-on-input 'all
eshell-scroll-to-bottom-on-output 'all
eshell-kill-processes-on-exit t
eshell-hist-ignoredups t
eshell-input-filter (lambda (input) (not (string-match-p "\\`\\s-+" input)))
eshell-prompt-regexp "^.* λ "
eshell-glob-case-insensitive t
eshell-error-if-no-glob t))
;;; Rime
(use-package rime
:ensure t
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment