feat: add highlighting in eshell , install eshell-syntax-highlighting

fix: typo in init-kbd.el
This commit is contained in:
trogloxene
2026-03-15 14:26:26 +08:00
parent 8c1c211e4b
commit a04242e795
3 changed files with 21 additions and 1 deletions

View File

@@ -27,6 +27,12 @@
(:map corfu-map
("RET" . nil)))
;; 在eshell中使用tab打开补全
(add-hook 'eshell-mode-hook
(lambda ()
(setq-local corfu-auto nil)
(local-set-key (kbd "TAB") 'completion-at-point)))
(use-package emacs
:custom
(tab-always-indent 'complete)