Fix an issue with eglot and projects.el loading

This commit is contained in:
Jakub 2025-10-28 09:12:38 +08:00
parent db3638593a
commit 66c5ef25cf
2 changed files with 8 additions and 3 deletions

View file

@ -50,6 +50,11 @@
(require 'use-package-ensure) (require 'use-package-ensure)
(setq use-package-always-ensure t) (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 ;; TODO: https://github.com/joaotavora/eglot/discussions/1487
(use-package eldoc :straight (:type built-in)) (use-package eldoc :straight (:type built-in))
(use-package org :straight (:type built-in)) (use-package org :straight (:type built-in))

View file

@ -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 ;; This file is not part of GNU Emacs
@ -75,6 +75,6 @@ This returns nil if no project is found."
(interactive) (interactive)
(customize-group 'whaler)) (customize-group 'whaler))
(provide 'projects) (provide 'theurgy-projects)
;;; projects.el ends here ;;; theurgy-projects.el ends here