summary refs log tree commit diff stats
path: root/eshell.el
diff options
context:
space:
mode:
Diffstat (limited to 'eshell.el')
-rw-r--r--eshell.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/eshell.el b/eshell.el index a2ac33b..c6d8e16 100644 --- a/eshell.el +++ b/eshell.el
@@ -24,7 +24,9 @@
24 ("ff" . "find-file $1") 24 ("ff" . "find-file $1")
25 ("emacs" . "find-file $1") 25 ("emacs" . "find-file $1")
26 ("ee" . "find-file-other-window $1"))) 26 ("ee" . "find-file-other-window $1")))
27 (eshell/alias (car definition) (cdr definition))) 27 (cl-letf (((symbol-function 'eshell-write-aliases-list) #'ignore))
28 (eshell/alias (car definition) (cdr definition))))
29(eshell-write-aliases-list)
28 30
29;;; Functions 31;;; Functions
30 32
@@ -62,6 +64,11 @@ any directory proferred by `consult-dir'."
62 (:autoload global-fish-completion-mode) 64 (:autoload global-fish-completion-mode)
63 (global-fish-completion-mode +1)) 65 (global-fish-completion-mode +1))
64 66
67(setup (:straight-when eshell-vterm
68 (require 'vterm nil :noerror))
69 (eshell-vterm-mode +1)
70 (defalias 'eshell/v 'eshell-exec-visual))
71
65;;; Miscellaneous 72;;; Miscellaneous
66 73
67;; Fix modeline 74;; Fix modeline