diff options
author | Case Duckworth | 2020-09-17 07:55:53 -0500 |
---|---|---|
committer | Case Duckworth | 2020-09-17 07:55:53 -0500 |
commit | b56e05a856ae041ae73df04f9d4cf11bacb7ef9e (patch) | |
tree | d070f66527c167b91ea03bb0b6f11d6bda27e8aa | |
parent | Add elpher binds (diff) | |
download | emacs-b56e05a856ae041ae73df04f9d4cf11bacb7ef9e.tar.gz emacs-b56e05a856ae041ae73df04f9d4cf11bacb7ef9e.zip |
Add eshell-syntax-highlighting
-rw-r--r-- | init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/init.el b/init.el index 0698153..8c0e43d 100644 --- a/init.el +++ b/init.el | |||
@@ -556,3 +556,8 @@ | |||
556 | (circe-my-message-face ((t (:inherit 'circe-highlight-nick-face :weight normal)))) | 556 | (circe-my-message-face ((t (:inherit 'circe-highlight-nick-face :weight normal)))) |
557 | (circe-originator-face ((t (:weight bold)))) | 557 | (circe-originator-face ((t (:weight bold)))) |
558 | (circe-prompt-face ((t (:inherit 'circe-my-message-face))))) | 558 | (circe-prompt-face ((t (:inherit 'circe-my-message-face))))) |
559 | |||
560 | (use-package eshell-syntax-highlighting | ||
561 | :after esh-mode | ||
562 | :config | ||
563 | (eshell-syntax-highlighting-global-mode 1)) | ||