From e95f868c9dbc40bb151d9ae9e8c9427823e4bd25 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Wed, 8 Sep 2021 18:24:44 +0200 Subject: [PATCH] Change default TRAMP method to scp Motivation: https://helpdeskheadesk.net/help-desk-head-desk/2021-05-19/. In a nutshell: scp should be faster. Not sure whether choosing pscp on Windows is a good idea, though. This may change in the future. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 5466564..36b8d0b 100644 --- a/init.el +++ b/init.el @@ -564,7 +564,7 @@ browse-url-generic-program "firefox")) (use-package tramp - :init (setq tramp-default-method (if on-windows "plink" "sshx"))) + :init (setq tramp-default-method (if on-windows "pscp" "scp"))) (use-package calc ;; https://florian.adamsky.it/2016/03/31/emacs-calc-for-programmers-and-cs.html