diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-08-28 14:44:24 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-08-28 14:44:24 +0100 |
commit | e49d7c97d404e9d192592dbf62434ee1ff86c774 (patch) | |
tree | 4bb2b6f793f45cc722e08ca324760d925468f869 | |
parent | 45e480cd93b83ca6e328940af675ca82c884fb59 (diff) | |
download | dotfiles-e49d7c97d404e9d192592dbf62434ee1ff86c774.tar.gz |
Make sure eshell is loaded before xterm-color
-rw-r--r-- | .emacs.d/lisp/init-shell.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-shell.el b/.emacs.d/lisp/init-shell.el index f3eb3ed..84f94d5 100644 --- a/.emacs.d/lisp/init-shell.el +++ b/.emacs.d/lisp/init-shell.el @@ -25,6 +25,7 @@ (eshell-syntax-highlighting-global-mode +1)) (use-package xterm-color + :after eshell :hook (eshell-before-prompt . (lambda () (setq xterm-color-preserve-properties t))) |