mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Also replaces the project's .doomrc file with a .doom (which isn't used or recognized just yet, but will be later).
24 lines
811 B
EmacsLisp
24 lines
811 B
EmacsLisp
;;; lisp/init.el -*- lexical-binding: t; -*-
|
|
;;; Commentary:
|
|
;;
|
|
;; :doom is now treated like a normal module, and this is its (temporary) init
|
|
;; file, which will be removed once we've resolved our `use-package' dependency
|
|
;; (which will soon be moved to its own module), then these will be returned to
|
|
;; the profile init file.
|
|
;;
|
|
;;; Code:
|
|
|
|
(doom-require 'doom-keybinds)
|
|
(doom-require 'doom-ui)
|
|
(doom-require 'doom-projects)
|
|
(doom-require 'doom-editor)
|
|
|
|
;; Ensure .dir-locals.el in $EMACSDIR and $DOOMDIR are always respected
|
|
(add-to-list 'safe-local-variable-directories doom-emacs-dir)
|
|
(add-to-list 'safe-local-variable-directories doom-user-dir)
|
|
|
|
;;; Support for Doom-specific file extensions
|
|
(add-to-list 'auto-mode-alist '("/\\.doom\\(?:module\\|profile\\)?\\'" . lisp-data-mode))
|
|
|
|
;;; init.el ends here
|