dotfiles-emacs/.emacs.d/config/tramp.el

10 lines
417 B
EmacsLisp
Raw Normal View History

2019-07-10 23:27:54 +02:00
(use-package tramp
:config
(setq tramp-default-method "ssh")
(add-to-list 'tramp-methods '("vcsh"
(tramp-login-program "vcsh")
(tramp-login-args (("enter")
("%h")))
(tramp-remote-shell "/bin/sh")
(tramp-remote-shell-args ("-c")))))