• 2 Posts
  • 3 Comments
Joined 11 months ago
cake
Cake day: October 16th, 2023

help-circle




  • For me, the main issue was startup speed from my customizations. This I sped up by:

    • Making use of emacsclient over new emacs sessions.
    • Combining scattered customization files into a single large emacs.el file.
    • Use defvar and autoload over require, load, eval-after-load.

    The last one is mostly to allow compiler- and flycheck warnings to work, without prematurely loading dependencies of my customization code.