Improve TRAMP performance with SSH ControlMaster and persistent sockets

This commit is contained in:
Fabio Scotto di Santolo
2026-04-16 19:05:25 +02:00
parent b936e8c8b7
commit 312e915840
5 changed files with 34 additions and 0 deletions

View File

@@ -19,6 +19,7 @@
'tools/dired
'tools/project
'tools/spell
'tools/tramp
'tools/lsp
'tools/dap
'tools/treesitter

View File

@@ -0,0 +1,13 @@
;;; tramp.el -*- lexical-binding: t; -*-
(use-package tramp
:config
(setq tramp-use-ssh-controlmaster-options t)
(setq tramp-chunksize 500)
(setq tramp-verbose 0)
(setq tramp-gvfs-wget "wget --quiet")
(setq tramp-cache-read-persistent-cache t))
(provide 'tools/tramp)
;;; tramp.el ends here

View File

@@ -0,0 +1,7 @@
Host *
ControlMaster auto
ControlPath ~/.local/state/ssh/sockets/%r@%h-%p
ControlPersist 600
Compression yes
ServerAliveInterval 60
ServerAliveCountMax 3