From a24bf7d6eff7ec7f9c42f90be6fa17def234d801 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 14 Nov 2016 20:29:44 +0100 Subject: [PATCH] Install the eshell-prompt-extras package --- customizations.el | 1 + init.el | 8 ++++++++ 2 files changed, 9 insertions(+) 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")