about summary refs log tree commit diff stats
path: root/.emacs.d
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-11-29 16:15:11 +0000
committerDavid Morgan <djm_uk@protonmail.com>2022-11-29 16:15:11 +0000
commitdb5ca9400c1973f9cba23503ed1824770c40e5f9 (patch)
treeec04a83dfa0b8d77df33a55749b5a953cacd0bd7 /.emacs.d
parent433a03dee015971479a71474127f3f17893c01b9 (diff)
downloaddotfiles-db5ca9400c1973f9cba23503ed1824770c40e5f9.tar.gz
Update tramp config
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/lisp/init-tramp.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-tramp.el b/.emacs.d/lisp/init-tramp.el
index 739236b..7d4d17c 100644
--- a/.emacs.d/lisp/init-tramp.el
+++ b/.emacs.d/lisp/init-tramp.el
@@ -4,13 +4,14 @@
 
 (use-feature tramp
   :defer 5
+  :config
+  (add-to-list 'tramp-remote-path "/run/current-system/sw/bin")
   :custom
   (tramp-default-method "ssh")
   (vc-ignore-dir-regexp
    (format "\\(%s\\)\\|\\(%s\\)"
            vc-ignore-dir-regexp
            tramp-file-name-regexp))
-  (tramp-default-method "ssh")
   (tramp-auto-save-directory (expand-file-name "tramp-auto-save" user-emacs-directory))
   (tramp-persistency-file-name (expand-file-name "tramp-connection-history" user-emacs-directory))
   (password-cache-expiry nil))