summary refs log tree commit diff
path: root/emacs/custom/my-tramp.el
blob: ed343bceff7277ddf8bc365d824670ba00986ec1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
;;; my-tramp.el --- Configure tramp -*- lexical-binding: t -*-

;;; Commentary:

;;; Code:

(customize-set-variable 'tramp-default-method "ssh")
(customize-set-variable 'tramp-histfile-override t)
(customize-set-variable 'tramp-ssh-controlmaster-options "-o ControlMaster=auto -o ControlPath='tramp.%%C'")

(provide 'my-tramp)
;;; my-tramp.el ends here