[emacs] tramp v1

This commit is contained in:
John Doty 2020-04-30 09:41:31 -07:00
parent 13e9c761f5
commit 84b4903d1c
2 changed files with 19 additions and 0 deletions

View file

@ -50,6 +50,9 @@
'(make-backup-files nil)
'(monky-process-type (quote cmdserver))
'(mouse-buffer-menu-mode-mult 0)
'(mouse-wheel-progressive-speed nil)
'(mouse-wheel-scroll-amount (quote (1 ((shift) . 5) ((control)))))
'(nrepl-use-ssh-fallback-for-remote-hosts t)
'(omnisharp-server-executable-path nil)
'(org-export-backends (quote (ascii html icalendar latex md odt)))
'(org-export-with-toc nil)
@ -89,6 +92,9 @@
'(show-paren-style (quote parenthesis))
'(tab-width 4)
'(tags-revert-without-query t)
'(tramp-completion-reread-directory-timeout nil nil (tramp))
'(tramp-default-method "sshx" nil (tramp))
'(tramp-use-ssh-controlmaster-options nil nil (tramp))
'(transient-mark-mode t)
'(truncate-lines t)
'(typescript-indent-level 2)

View file

@ -898,4 +898,17 @@
(unless (member "TARGETS" clojure-build-tool-files)
(setq clojure-build-tool-files (append clojure-build-tool-files '("TARGETS")))))
;; ================================================================
;; TRAMP
;; ================================================================
(require 'tramp)
;; Since we're going to be doing this a lot, the minibar message
;; tramp spits out for every file access is both spammy, distracting,
;; and often hides more relevant messages.
(setq tramp-message-show-message nil)
;; Let tramp search $PATH as given to the $USER on the remote machine
;; (necessary to find 'hphpd' for instance)
(add-to-list 'tramp-remote-path 'tramp-own-remote-path)
;;; init.el ends here