Trying to make TRAMP faster
This commit is contained in:
parent
c99617dc84
commit
a8ba7dbaac
1 changed files with 3 additions and 1 deletions
4
init.el
4
init.el
|
@ -70,11 +70,13 @@
|
||||||
|
|
||||||
(use-package tramp
|
(use-package tramp
|
||||||
:config
|
:config
|
||||||
;; TODO ugly `ccr' hardcoded
|
;; TODO ugly `ccr' hardcoded, moreover this makes sense only when connecting to NixOS machines
|
||||||
(add-to-list 'tramp-remote-path "/home/ccr/.nix-profile/bin" 't)
|
(add-to-list 'tramp-remote-path "/home/ccr/.nix-profile/bin" 't)
|
||||||
(add-to-list 'tramp-remote-path "/etc/profiles/per-user/ccr/bin" 't)
|
(add-to-list 'tramp-remote-path "/etc/profiles/per-user/ccr/bin" 't)
|
||||||
(add-to-list 'tramp-remote-path "/run/current-system/sw/bin" 't)
|
(add-to-list 'tramp-remote-path "/run/current-system/sw/bin" 't)
|
||||||
(add-to-list 'tramp-remote-path 'tramp-own-remote-path)
|
(add-to-list 'tramp-remote-path 'tramp-own-remote-path)
|
||||||
|
:custom
|
||||||
|
(tramp-use-ssh-controlmaster-options nil) ;; makes tramp use ~/.ssh/config
|
||||||
)
|
)
|
||||||
|
|
||||||
(use-package dracula-theme
|
(use-package dracula-theme
|
||||||
|
|
Reference in a new issue