diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-09-01 10:26:57 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-09-01 10:26:57 +0100 |
commit | 1bfdf5225f5f945dae7a469e65be686a8dad9e44 (patch) | |
tree | 0941646ac570aafcb99ca81f639f87a4ecffaefd | |
parent | 45e480cd93b83ca6e328940af675ca82c884fb59 (diff) | |
download | dotfiles-1bfdf5225f5f945dae7a469e65be686a8dad9e44.tar.gz |
Remove esh-autosuggest and try to fix xterm-color error
-rw-r--r-- | .emacs.d/lisp/init-shell.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.emacs.d/lisp/init-shell.el b/.emacs.d/lisp/init-shell.el index f3eb3ed..a312d8c 100644 --- a/.emacs.d/lisp/init-shell.el +++ b/.emacs.d/lisp/init-shell.el @@ -16,15 +16,13 @@ :defer t :hook (eshell-mode . (lambda () (require 'eshell-z)))) -(use-package esh-autosuggest - :hook (eshell-mode . esh-autosuggest-mode)) - (use-package eshell-syntax-highlighting :after esh-mode :config (eshell-syntax-highlighting-global-mode +1)) (use-package xterm-color + :after esh-mode :hook (eshell-before-prompt . (lambda () (setq xterm-color-preserve-properties t))) |