;;; tramp-conf.el --- Configurations of Tramp -*- lexical-binding: t; -*- ;; Copyright (C) 2022 李俊緯 ;; Author: 李俊緯 ;; Keywords: comm, convenience, files, processes ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . ;;; Commentary: ;; My configurations of the wonderful Tramp. ;;; Code: (require 'tramp) ;;; Fix a Tramp copy arg (cond ((assoc "rsync" tramp-methods #'equal) (setcar (cdr (assoc 'tramp-copy-args (assoc "rsync" tramp-methods #'equal))) (list (list "-t" "%k") (list "-p") (list "-r") ;; this option is invalid for my rsync program, for some reason ;; ("-s") (list "-c"))))) ;;; Disable backups for Tramp (add-to-list 'backup-directory-alist (cons tramp-file-name-regexp nil)) ;;; Don't ask this over and over. (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