• 3 Posts
  • 9 Comments
Joined 11 months ago
cake
Cake day: October 10th, 2023

help-circle







  • varsderk@alien.topOPBtoEmacs@communick.newsUsing Eat + Eshell
    link
    fedilink
    English
    arrow-up
    1
    ·
    11 months ago

    This is my current config: set TERM to “xterm”, and fix the otherwise impossible-to-see ANSI blue:

    (use-package eat
      :custom
      (eat-term-name "xterm")
      :custom-face
      (ansi-color-bright-blue ((t (:foreground "#00afff" :background "#00afff"))))
      :config
      (evil-set-initial-state 'eat-mode 'emacs)
      (eat-eshell-mode)
      (eat-eshell-visual-command-mode))