From ea8485318fcb03b27b8226dbee400d250c049695 Mon Sep 17 00:00:00 2001 From: jowj Date: Sun, 21 Apr 2019 22:41:36 -0500 Subject: [PATCH] Add eshell prompt config. --- applicationConfiguration/.emacs/init.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/applicationConfiguration/.emacs/init.el b/applicationConfiguration/.emacs/init.el index 9159fe6..4fa0a13 100644 --- a/applicationConfiguration/.emacs/init.el +++ b/applicationConfiguration/.emacs/init.el @@ -166,6 +166,13 @@ '(racer flycheck-rust rust-mode color-theme-sanityinc-tomorrow org2blog multiple-cursors flymake-python-pyflakes pdf-tools weechat jedi python-mode pylint py-autopep8 powershell outline-magic markdown-mode magit flycheck exec-path-from-shell elpygen elpy ein doom-themes csharp-mode))) +;; eshell configuration +;; ------------------------------------- +(setq eshell-prompt-function + (lambda () + (concat (format-time-string "%H:%M:%S" (current-time)) + (if (= (user-uid) 0) " ☭ " " ǰ ")))) + ;; PYTHON CONFIGURATION ;; --------------------------------------