Replace lsp-mode with eglot
Some checks failed
/ Test config on 20 (push) Failing after 49s

This commit is contained in:
Maciej 2025-09-18 15:06:30 +03:00
parent f03cae68b3
commit 2ef1340e6c
Signed by: maciej
GPG key ID: 28243AF437E32F99
28 changed files with 140 additions and 220 deletions

View file

@ -1,13 +1,13 @@
;;; dhall -- summary -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(declare-function lsp 'lsp-mode)
(use-package dhall-mode :ensure t :defer t :requires (lsp))
(use-package dhall-mode :ensure t :defer t)
(defun icejam-lang-activate-dhall-mode ()
"Reconfigure dhall mode for your own purposes."
(lsp))
(eglot-ensure)
(icejam-set-eglot-capfs))
(add-hook 'dhall-mode-hook 'icejam-lang-activate-dhall-mode)
(add-hook 'dhall-mode-hook 'display-line-numbers-mode)