From 7afcc71db929e431f7557209130c5da66da4a1cf Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Fri, 23 Feb 2018 10:03:08 +0100 Subject: [PATCH] Emacs: tramp via use-package, set tramp-default-method to SSH --- emacs/emacs.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/emacs/emacs.el b/emacs/emacs.el index fc06d54..3bf20e4 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -1117,3 +1117,9 @@ (use-package saveplace :init (save-place-mode t)) +;; tramp +;; do stuff over ssh at al. +(use-package tramp + :init + ;; Set default connection method for TRAMP + (setq tramp-default-method "ssh"))