Disable nyan-prompt

With the latest version of eshell it stopped working. I may or may not debug it sometime later.
This commit is contained in:
Gergely Polonkai 2021-03-09 17:58:14 +01:00
parent 2d55aa9263
commit 24d19c2e17
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 4 additions and 4 deletions

View File

@ -1616,7 +1616,9 @@ I dont 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 its 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))