dotfiles/common/.config/emacs/init.el.org
2024-09-28 00:01:09 -05:00

1.1 KiB

Emacs Configuration

Load force-custom-file.el to ensure that init.el is not polluted by customizations.

  (load "~/.config/emacs/force-custom-file.el")

Load package-setup.el to allow for package installation.

  (load "~/.config/emacs/package-setup.el")

Load user-interface.el to clean up Emacs' user interface and make it look the way I like.

  (load "~/.config/emacs/user-interface.el")

Load tools.el to add functionality to Emacs.

  (load "~/.config/emacs/tools.el")

Load languages.el to add language and language server protocol support.

  (load "~/.config/emacs/languages.el")