aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-07-30 16:46:48 -0700
committerGravatar Tom Willemse2026-08-26 23:04:25 -0700
commit8521a6a5b7833043811503ed1d0541a7bb6cb8a6 (patch)
treecc6e98b4a33bc271b945c356e76bbf5a892de519
parentfff546cfe81f19a93e59b6f52a1742c312d48b60 (diff)
downloadnew-dotfiles-8521a6a5b7833043811503ed1d0541a7bb6cb8a6.tar.gz
new-dotfiles-8521a6a5b7833043811503ed1d0541a7bb6cb8a6.zip
emacs: Add eglot configuration for org-mode
-rw-r--r--emacs/.emacs.d/init.org13
1 files changed, 13 insertions, 0 deletions
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