summaryrefslogtreecommitdiff
path: root/packages/tramp.el
blob: 501f6a6e1d999e93cd2a5ae2a8ce1212a514d71d (plain)
1
2
3
4
5
6
7
8
9
(use-package tramp
  :custom
  (tramp-password-cache nil)
  (tramp-persistency-file-name nil)
  :config
  (add-to-list 'tramp-connection-properties
               (list (regexp-quote (format "/sudo:root@%s:" system-name))
                     "session-timeout" (* 60 60)))
  (add-to-list 'tramp-remote-path "/root/bin"))