about summary refs log blame commit diff stats
path: root/.emacs.d/lisp/init-tramp.el
blob: 739236b127930407fdedae1f37c41464551aa7f2 (plain) (tree)
1
2
3
4
5
6



                                                                         
                  
          












                                                                                                  
;;; init-tramp.el --- Tramp Configuration File -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:

(use-feature tramp
  :defer 5
  :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))

(provide 'init-tramp)
;;; init-tramp.el ends here