Gered
5ab38869db
when cycling through buffers, skip over a bunch of built-in emacs buffers. as well, skip over dired-sidebar-mode buffers, as these get super annoyingly mixed in all over the place at times
19 lines
477 B
EmacsLisp
19 lines
477 B
EmacsLisp
(dolist (f '("packages.el"
|
|
"functions.el"
|
|
"later-init.el"
|
|
"ui.el"
|
|
"dired.el"
|
|
"minibuffer.el"
|
|
"editing.el"
|
|
"lsp.el"
|
|
"debugging.el"
|
|
"git.el"
|
|
"lang-modes.el"
|
|
"keybinds.el"
|
|
"commands.el"))
|
|
;;(message "%f loading %s" (float-time) f)
|
|
(load (locate-user-emacs-file f)))
|
|
|
|
(setq gc-cons-threshold original-gc-cons-threshold)
|
|
|