From 8b0d063d78fae5a2b31e03218396f3bf8e2466ea Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Mon, 06 Dec 2021 07:34:32 +0000
Subject: [PATCH] Use tramp from elpa

---
 config.org |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/config.org b/config.org
index 54db705..9d8cd82 100644
--- a/config.org
+++ b/config.org
@@ -685,9 +685,14 @@
 Remote editing mode.
 Hate having to re-input passwords.
 #+BEGIN_SRC emacs-lisp
-  (when (eq system-type 'windows-nt)
-    (setq tramp-default-method "pscp"))
-  (setq password-cache-expiry nil)
+  (use-package tramp
+    :ensure t
+    :pin gnu
+    :config
+    ;; (setq tramp-default-method "ssh")
+    (when (eq system-type 'windows-nt)
+      (setq tramp-default-method "pscp"))
+    (setq password-cache-expiry nil))
 #+END_SRC
 
 ** COMMENT Y or N instead of yes or no

--
Gitblit v1.9.3