diff --git a/customizations.el b/customizations.el index 4a7bad5..6f81b1e 100644 --- a/customizations.el +++ b/customizations.el @@ -53,6 +53,7 @@ electric-spacing emamux eshell-fringe-status + eshell-prompt-extras fill-column-indicator flycheck flycheck-pkg-config diff --git a/init.el b/init.el index 4601f38..66330b7 100644 --- a/init.el +++ b/init.el @@ -864,6 +864,14 @@ :config (add-hook 'eshell-mode-hook 'eshell-fringe-status-mode))) +(use-package eshell-prompt-extras + :ensure t + :config + (with-eval-after-load "esh-opt" + (autoload 'epe-theme-lambda "eshell-prompt-extras") + (setq eshell-highlight-prompt nil + eshell-prompt-function 'epe-theme-lambda))) + ;; Load my own functions (load "gnu-c-header.el") (load "toggle-window-split.el")