From 66c5ef25cf4dd973503f591db70ab9f446d5e90b Mon Sep 17 00:00:00 2001 From: Jakub Date: Tue, 28 Oct 2025 09:12:38 +0800 Subject: [PATCH] Fix an issue with eglot and projects.el loading --- init.el | 5 +++++ userland/{projects.el => theurgy-projects.el} | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) rename userland/{projects.el => theurgy-projects.el} (94%) diff --git a/init.el b/init.el index d86cad3..939d5a9 100644 --- a/init.el +++ b/init.el @@ -50,6 +50,11 @@ (require 'use-package-ensure) (setq use-package-always-ensure t) +;; TODO: https://github.com/joaotavora/eglot/discussions/1436 +(use-package eglot + :defer t) +(require 'project) + ;; TODO: https://github.com/joaotavora/eglot/discussions/1487 (use-package eldoc :straight (:type built-in)) (use-package org :straight (:type built-in)) diff --git a/userland/projects.el b/userland/theurgy-projects.el similarity index 94% rename from userland/projects.el rename to userland/theurgy-projects.el index 189b159..0a34740 100644 --- a/userland/projects.el +++ b/userland/theurgy-projects.el @@ -1,4 +1,4 @@ -;;; projects.el --- Project management configuration with whaler -*- lexical-binding: t -*- +;;; theurgy-projects.el --- Project management configuration with whaler -*- lexical-binding: t -*- ;; This file is not part of GNU Emacs @@ -75,6 +75,6 @@ This returns nil if no project is found." (interactive) (customize-group 'whaler)) -(provide 'projects) +(provide 'theurgy-projects) -;;; projects.el ends here +;;; theurgy-projects.el ends here