From 24d19c2e172fcfcc7eb850a857beba8135ddfc02 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Tue, 9 Mar 2021 17:58:14 +0100 Subject: [PATCH] Disable nyan-prompt With the latest version of eshell it stopped working. I may or may not debug it sometime later. --- configuration.org | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configuration.org b/configuration.org index 8d27942..97b42bf 100644 --- a/configuration.org +++ b/configuration.org @@ -1616,7 +1616,9 @@ I don’t usually like to see them, but there are occasions when they can be use #+BEGIN_SRC emacs-lisp (use-package nyan-prompt - :ensure nil) + :disabled + :hook + (eshell-load . nyan-prompt-enable)) #+END_SRC *** Zone out with Nyancat @@ -1696,9 +1698,7 @@ Highlight point. Sometimes it’s not easy to see. (use-package eshell-prompt-extras :config (with-eval-after-load "esh-opt" - (autoload 'epe-theme-lambda "eshell-prompt-extras") - (when (featurep 'nyan-prompt) - (nyan-prompt-enable))) + (autoload 'epe-theme-lambda "eshell-prompt-extras")) :custom (eshell-highlight-prompt nil) (eshell-prompt-function 'epe-theme-lambda))