57

GitHub - kaihaosw/eshell-prompt-extras: Display extra information and color for...

 6 years ago
source link: https://github.com/kaihaosw/eshell-prompt-extras
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

eshell-prompt-extras

Display extra information and color for your eshell prompt.

Introduction

This library display remote user, remote host, python virtual
environment info, git branch, git dirty info and git unpushed number
for eshell prompt.

If you want to display the python virtual environment info, you
need to install virtualenvwrapper.

pip install virtualenvwrapper

And virtualenvwrapper.el

Installation

It is recommended installed by the ELPA package system.
You could install it by M-x: with
package-install: eshell-prompt-extras.

Usage

before emacs24.4

(eval-after-load 'esh-opt
  (progn
    (autoload 'epe-theme-lambda "eshell-prompt-extras")
    (setq eshell-highlight-prompt nil
          eshell-prompt-function 'epe-theme-lambda)))

If you want to display python virtual environment information.

(eval-after-load 'esh-opt
  (progn
    (require 'virtualenvwrapper)
    (venv-initialize-eshell)
    (autoload 'epe-theme-lambda "eshell-prompt-extras")
    (setq eshell-highlight-prompt nil
          eshell-prompt-function 'epe-theme-lambda))))

after emacs24.4

(with-eval-after-load "esh-opt"
  (autoload 'epe-theme-lambda "eshell-prompt-extras")
  (setq eshell-highlight-prompt nil
        eshell-prompt-function 'epe-theme-lambda))

If you want to display python virtual environment information:

(with-eval-after-load "esh-opt"
  (require 'virtualenvwrapper)
  (venv-initialize-eshell)
  (autoload 'epe-theme-lambda "eshell-prompt-extras")
  (setq eshell-highlight-prompt nil
        eshell-prompt-function 'epe-theme-lambda))

Themes

epe-theme-lambda  
epe-theme-dakrone
epe-theme-multiline-with-status

Custom Variables

epe-show-python-info (default t)  
epe-git-dirty-char (default *)  
epe-git-untracked-char (default ?)  
epe-git-detached-HEAD-char (default D:)  
epe-path-style: (options: fish, single or full. default fish)

Faces

epe-remote-face  
epe-venv-face  
epe-dir-face  
epe-git-face  
epe-symbol-face  
epe-sudo-symbol-face
epe-status-face

Screenshot

picture of eshell-prompt-extras

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK