diff options
author | Thanos Apollo <[email protected]> | 2023-02-10 06:36:14 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-02-10 06:36:14 +0200 |
commit | ff3d4cb7afba03dade4f648bddcad603a41e8283 (patch) | |
tree | 366ccdf85f52fa0c61d01746cfa47f4f377f6e6e /.emacs.d/snippets/apollo-eshell.el | |
parent | 80faca8076df76f712a7875a44669759fa5f0caa (diff) |
emacs: remove old files
Diffstat (limited to '.emacs.d/snippets/apollo-eshell.el')
-rw-r--r-- | .emacs.d/snippets/apollo-eshell.el | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.emacs.d/snippets/apollo-eshell.el b/.emacs.d/snippets/apollo-eshell.el deleted file mode 100644 index aba141d..0000000 --- a/.emacs.d/snippets/apollo-eshell.el +++ /dev/null @@ -1,23 +0,0 @@ - -(defun with-face (str &rest face-plist) - (propertize str 'face face-plist)) - -(defun apollo-eshell-prompt () - (let ((winter-blue "#3F3B6C") - (white-summer "#E5E5CB") - (green-night "#03C988") - (orange-summer "#FFB100") - (green-summer "#A3BB98") - (summer-sea "#2192FF") - (black "#000000")) - (concat - (with-face (concat "[" user-login-name) :foreground orange-summer :background black) - (with-face "@" :foreground orange-summer :background black) - (with-face (concat system-name "]\n") :foreground orange-summer :background black) - (with-face (concat "|" (eshell/pwd) ) :foreground "#F0E9D2" :background winter-blue) - (with-face (format-time-string " | %H:%M" (current-time)) :background winter-blue :foreground "#888") - (with-face "\n -> ")))) - -(setq eshell-prompt-function 'apollo-eshell-prompt) -(setq eshell-highlight-prompt t) - |