diff options
author | Adrian Kummerlaender | 2020-06-17 21:45:10 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2020-06-17 21:45:10 +0200 |
commit | 6b2444207e68ff54714a1cf75a3786607e7646b1 (patch) | |
tree | a47c738a3c5d44cbad0aac23d6aeddd77356263a /gui/conf | |
parent | 23da69df8527aa8292ba2d8bee1c81375ba3a82a (diff) | |
download | nixos_home-6b2444207e68ff54714a1cf75a3786607e7646b1.tar nixos_home-6b2444207e68ff54714a1cf75a3786607e7646b1.tar.gz nixos_home-6b2444207e68ff54714a1cf75a3786607e7646b1.tar.bz2 nixos_home-6b2444207e68ff54714a1cf75a3786607e7646b1.tar.lz nixos_home-6b2444207e68ff54714a1cf75a3786607e7646b1.tar.xz nixos_home-6b2444207e68ff54714a1cf75a3786607e7646b1.tar.zst nixos_home-6b2444207e68ff54714a1cf75a3786607e7646b1.zip |
Set eshell autocomplete, prompt color
Diffstat (limited to 'gui/conf')
-rw-r--r-- | gui/conf/init.el | 5 | ||||
-rw-r--r-- | gui/conf/metakr.org | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gui/conf/init.el b/gui/conf/init.el index 26b07ed..297ef6a 100644 --- a/gui/conf/init.el +++ b/gui/conf/init.el @@ -319,3 +319,8 @@ (evil-define-key 'normal prog-mode-map (kbd "<tab>") 'jump-to-first-related (kbd "M-r") 'jump-to-related) + +(add-hook 'eshell-mode-hook + (lambda () + (define-key eshell-mode-map (kbd "<tab>") + (lambda () (interactive) (completion-at-point))))) diff --git a/gui/conf/metakr.org b/gui/conf/metakr.org index a5b8eee..aa7a6c5 100644 --- a/gui/conf/metakr.org +++ b/gui/conf/metakr.org @@ -85,6 +85,7 @@ For quick iteration all colors are stored in a table. | org-special-keyword | #777777 | | org-sched-prev | #8C3346 | | org-agenda-done | #909636 | +| eshell-prompt | #AADB0F | * Structure #+NAME: structure @@ -330,6 +331,10 @@ For quick iteration all colors are stored in a table. :foreground @org-agenda-done) (org-footnote :foreground @link) + +;; Eshell + (eshell-prompt + :foreground @eshell-prompt) ) #+END_SRC |