blob: 5af23dfe43f6ad910021e88f3bc0c98696867657 (
plain)
1
2
3
4
5
6
7
8
|
(use-package tramp
:custom
(tramp-password-cache nil)
(tramp-persistency-file-name (file-name-concat (xdg-state-home) "emacs/tramp/persistency-file"))
:config
(add-to-list 'tramp-connection-properties
(list (regexp-quote (format "/sudo:root@%s:" system-name))
"session-timeout" (* 60 60))))
|