add commands.el

with just a basic command that kinda helps out with some performance
issues when working over sshfs
This commit is contained in:
Gered 2024-12-04 22:49:38 -05:00
parent 6693d615f9
commit 92550ce1dc
2 changed files with 7 additions and 1 deletions

5
emacs.d/commands.el Normal file
View file

@ -0,0 +1,5 @@
(defun gered/setup-for-sshfs ()
(interactive)
(gered/disable-vcs)
(setq after-focus-change-function (lambda ()))
(message "Finished setup for SSHFS use"))

View file

@ -7,7 +7,8 @@
"dev.el"
"git.el"
"lang-modes.el"
"keybinds.el"))
"keybinds.el"
"commands.el"))
(load (locate-user-emacs-file f)))
(setq gc-cons-threshold original-gc-cons-threshold)