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:
parent
6693d615f9
commit
92550ce1dc
5
emacs.d/commands.el
Normal file
5
emacs.d/commands.el
Normal 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"))
|
|
@ -7,7 +7,8 @@
|
||||||
"dev.el"
|
"dev.el"
|
||||||
"git.el"
|
"git.el"
|
||||||
"lang-modes.el"
|
"lang-modes.el"
|
||||||
"keybinds.el"))
|
"keybinds.el"
|
||||||
|
"commands.el"))
|
||||||
(load (locate-user-emacs-file f)))
|
(load (locate-user-emacs-file f)))
|
||||||
|
|
||||||
(setq gc-cons-threshold original-gc-cons-threshold)
|
(setq gc-cons-threshold original-gc-cons-threshold)
|
||||||
|
|
Loading…
Reference in a new issue