dotfiles/emacs.d/commands.el
Gered 92550ce1dc add commands.el
with just a basic command that kinda helps out with some performance
issues when working over sshfs
2024-12-04 22:49:38 -05:00

6 lines
163 B
EmacsLisp

(defun gered/setup-for-sshfs ()
(interactive)
(gered/disable-vcs)
(setq after-focus-change-function (lambda ()))
(message "Finished setup for SSHFS use"))