summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2020-09-17 07:55:53 -0500
committerCase Duckworth2020-09-17 07:55:53 -0500
commitb56e05a856ae041ae73df04f9d4cf11bacb7ef9e (patch)
treed070f66527c167b91ea03bb0b6f11d6bda27e8aa /init.el
parentAdd elpher binds (diff)
downloademacs-b56e05a856ae041ae73df04f9d4cf11bacb7ef9e.tar.gz
emacs-b56e05a856ae041ae73df04f9d4cf11bacb7ef9e.zip
Add eshell-syntax-highlighting
Diffstat (limited to 'init.el')
-rw-r--r--init.el5
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))