diff options
-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 |