optimize and use use-package

This commit is contained in:
finga 2019-07-10 23:27:54 +02:00
parent f6d3734a66
commit 7033155c6a
10 changed files with 296 additions and 92 deletions

9
.emacs.d/config/tramp.el Normal file
View file

@ -0,0 +1,9 @@
(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")))))