My emacs config
bind C-M-C to caser-upper-camelcase-dwim
make the latex format command only run when we're in latex-mode
prefer global-text-scale-adjust

heads

tip
browse log

clone

read-only
https://hg.sr.ht/~zck/.emacs.d
read/write
ssh://hg@hg.sr.ht/~zck/.emacs.d

#My Emacs config

#Organization

This config is written in literate programming style, with the code interspersed with text. This is intended to be better for organization; for example, all package configuration can be done in separate blocks grouped together.

This also means that the init.el file, unlike a normal Emacs config, only contains information about loading this literate file. The actual configuration is done in org-init.org.

I don't use an early-init.el file. Emacs yells at me upon startup about calling (package-initialize) in my config, which is only done so the config works. Perhaps using early-init would help.