From 9f8040c4d3e14893e25d91acc3a4f4b558ed3461 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Tue, 2 Jun 2020 14:58:55 -0400 Subject: [PATCH] Fix eshell tramp loading --- emacs/init.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emacs/init.org b/emacs/init.org index e58d27a..9967117 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -2581,7 +2581,8 @@ Make EShell's tab completion work like Bash's: Add additional useful modules: #+BEGIN_SRC emacs-lisp - (add-to-list 'eshell-modules-list 'eshell-tramp) + (with-eval-after-load 'eshell + (add-to-list 'eshell-modules-list 'eshell-tramp)) #+END_SRC Prefer Lisp commands to external programs: