dotfiles-emacs/.emacs.d/config/tramp.el
finga 91ff02afe1 config: Fix indention by emacs auto indent
Use the indention that emacs applies when auto indenting.
2024-05-27 13:47:27 +02:00

9 lines
417 B
EmacsLisp

(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")))))