summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2023-04-27 22:19:44 -0400
committerJohn Turner <jturner.usa@gmail.com>2023-04-27 22:19:44 -0400
commita8000da62a82ae9f7270397e03ec59d2e0646a3c (patch)
treee291373f892398a49c1f311e0465dbf161f0dcee
parentc05e33817867659823f7b46466136972e2fe6697 (diff)
downloademacs.d-a8000da62a82ae9f7270397e03ec59d2e0646a3c.tar.gz
readded eglot init module
-rw-r--r--init.el3
-rw-r--r--init/eglot/init-eglot.el4
2 files changed, 7 insertions, 0 deletions
diff --git a/init.el b/init.el
index b853ccb..92ad88d 100644
--- a/init.el
+++ b/init.el
@@ -37,6 +37,9 @@
(when (require? 'lsp-mode)
(require 'init-lsp-mode))
+(when (require? 'eglot)
+ (require 'init-eglot))
+
(when (require? 'pixel-scroll)
(require 'init-pixel-scroll))
diff --git a/init/eglot/init-eglot.el b/init/eglot/init-eglot.el
new file mode 100644
index 0000000..128f7fb
--- /dev/null
+++ b/init/eglot/init-eglot.el
@@ -0,0 +1,4 @@
+(setq eglot-autoshutdown t
+ eglot-events-buffer-size 0)
+
+(provide 'init-eglot)