dotfiles/config/emacs/init.org
2024-08-07 14:58:48 -05:00

406 B

Emacs init.el

Force the usage of a custom.el file for customizations.

(setq custom-file (concat user-emacs-directory "custom.el"))
(when (file-exists-p custom-file)
  (load custom-file))

Load the main configuration from config.org.

(org-babel-load-file "~/.config/emacs/config.org")