diff options
author | Thanos Apollo <[email protected]> | 2024-10-08 18:21:52 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-10-08 18:21:52 +0300 |
commit | 401ed7a480d52fea69d74416430d00271e484d2f (patch) | |
tree | d885af62af0ba06547698ae291419a7a15e05e73 /.config | |
parent | 05b3e503c6472ab9d58d6eb63dd8bebddbe3f9f8 (diff) |
emacs: Improve integration with eshell & eat.
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/init.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index f01e6d9..2687f22 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -734,13 +734,11 @@ ("integration" "integration/*") (:exclude ".dir-locals.el" "*-tests.el"))) :config - (setf eshell-visual-commands nil) + (setf eshell-visual-commands nil + eat-term-name "xterm-256color") :bind (("C-c v" . eat)) :hook ((eshell-mode . eat-eshell-mode) - (eshell-mode . eat-eshell-visual-command-mode) - ;; (eat-mode . (lambda () (when (bound-and-true-p display-line-numbers-mode) - ;; (display-line-numbers-mode -1)))) - )) + (eshell-mode . eat-eshell-visual-command-mode))) (use-package shell :defer t |