diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-22 06:57:58 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-22 06:57:58 -0700 |
commit | 9dbc4a67f37c273601f3b3d03ce5afaa11d417c6 (patch) | |
tree | 984bdcb0d1389550b5f5bdc5d280b792ed12e526 /emacs | |
parent | org: make flymake happy (diff) | |
download | emacs.d-9dbc4a67f37c273601f3b3d03ce5afaa11d417c6.tar.gz |
tramp: make flymake happy
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-tramp.el | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/emacs/custom/fcuny-tramp.el b/emacs/custom/fcuny-tramp.el index 2a087c2..68bacf7 100644 --- a/emacs/custom/fcuny-tramp.el +++ b/emacs/custom/fcuny-tramp.el @@ -1,8 +1,15 @@ +;;; fcuny-tramp.el --- Configure tramp +;;; Commentary: +;;; Code: + +(require 'use-package) + (use-package tramp :custom (tramp-default-method "ssh") (tramp-histfile-override t) (tramp-ssh-controlmaster-options - "-o ControlMaster=auto -o ControlPath='tramp.%%C'")) + "-o ControlMaster=auto -o ControlPath='tramp.%%C'")) (provide 'fcuny-tramp) +;;; fcuny-tramp.el ends here |