From 8521a6a5b7833043811503ed1d0541a7bb6cb8a6 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 30 Jul 2026 16:46:48 -0700 Subject: emacs: Add eglot configuration for org-mode --- emacs/.emacs.d/init.org | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 49442ad..1a82ec6 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -929,3 +929,16 @@ Now the pull app. (expand-file-name "~/code/diamond-interactive/pull-app") 'pull-app)) #+end_src + +* Eglot + +Set up a server program for Eglot for org-mode. + +#+begin_src emacs-lisp + (use-package eglot + :if (eq system-type 'darwin) + :ensure-system-package (harper-ls . harper) + :config + (add-to-list 'eglot-server-programs + '(org-mode . ("harper-ls" "--stdio")))) +#+end_src -- cgit v1.3-2-g0d8e