Files
memex/projects/dotemacs/modules/emacs-early-init.org
Amr Gharbeia cc6c552d5a refactor: Move Emacs config from system/ to projects/dotemacs/
- Delete deprecated system/ configuration files
- Update projects/dotemacs/modules/ with reorganized config
- Add .opencode/ directory for agent state
- Clean up attachments and unused documentation files
2026-04-25 18:41:20 -04:00

374 B

Early Init Configuration

early-init.el

For straight.el to pick up before package.el

  (setq package-enable-at-startup nil)

Run Emacs as a server

  (require 'server)
  (unless (server-running-p) (server-start))
  (defvar server-max-buffers 100)