Last active
August 29, 2015 14:11
-
-
Save aont/d25051128d8772ff8847 to your computer and use it in GitHub Desktop.
Emacs tramp settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (require 'tramp) | |
| (setq tramp-default-method "scp") | |
| (setq tramp-ssh-controlmaster-options | |
| (concat "-o ControlPath=" (getenv "HOME") "/.ssh/master-%%r@%%h:%%p") | |
| ) | |
| (setq tramp-debug-buffer t) | |
| (setq tramp-verbose 10) | |
| (defun tramp-set-auto-save () | |
| (auto-save-mode -1)) | |
| ;; (setq tramp-persistency-file-name nil) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment