diff options
-rw-r--r-- | common.el | 3 | ||||
-rw-r--r-- | eshell-conf.el | 4 | ||||
-rw-r--r-- | tramp-conf.el | 7 |
3 files changed, 13 insertions, 1 deletions
@@ -194,7 +194,8 @@ the window to the function with max-height equal to ;;; Rebinding a key in Info mode -(define-key Info-mode-map (vector 41) #'Info-forward-node) +(with-eval-after-load 'info + (define-key Info-mode-map (vector 41) #'Info-forward-node)) ;; (defun durand-display-in-one-window (buffer _alist) ;; "Display BUFFER in one window. diff --git a/eshell-conf.el b/eshell-conf.el index f4c8a23..3ee8352 100644 --- a/eshell-conf.el +++ b/eshell-conf.el @@ -365,6 +365,10 @@ candidates." If called without ARGS, then use ./ instead." (eshell/ls "-hal" (or args "./"))) +;;; Integration with Tramp + +(add-to-list 'eshell-modules-list 'eshell-tramp) + ;;; Substitute commands ;;;###autoload diff --git a/tramp-conf.el b/tramp-conf.el index 8614be3..183361b 100644 --- a/tramp-conf.el +++ b/tramp-conf.el @@ -51,5 +51,12 @@ (setq tramp-allow-unsafe-temporary-files t) +;;; Disable version control on remote hosts + +(setq + vc-ignore-dir-regexp + (format "\\(%s\\)\\|\\(%s\\)" + vc-ignore-dir-regexp tramp-file-name-regexp)) + (provide 'tramp-conf) ;;; tramp-conf.el ends here |