dotfiles/.emacs.d/early-init.el
2025-05-19 00:08:33 +02:00

22 lines
533 B
EmacsLisp

;;; early-init.el -*- lexical-binding: t; -*-
;; Copyright © 2025 caem
;; Author: caem <me@caem.dev>
;; URL: https://git.caem.dev/caem/dotfiles
;; Commentary:
;; This is a stub early-init file to lead the actual early-init file of my emacs
;; configuration.
;;
;; Refer to init.el in the same directory as this for the rationale behind for
;; having this file where it is and why it is the way that it is.
;; Code:
(require 'xdg)
(load (expand-file-name "emacs/early-init.el" (xdg-config-home)))
;;; early-init.el ends here