dotfiles/emacs.d/init.el
Gered 5ab38869db configure switch-to-prev-buffer-skip
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
2025-01-19 16:36:21 -05:00

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)