22 lines
533 B
EmacsLisp
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
|