diff options
author | John Turner <jturner.usa@gmail.com> | 2023-04-27 22:19:44 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2023-04-27 22:19:44 -0400 |
commit | a8000da62a82ae9f7270397e03ec59d2e0646a3c (patch) | |
tree | e291373f892398a49c1f311e0465dbf161f0dcee | |
parent | c05e33817867659823f7b46466136972e2fe6697 (diff) | |
download | emacs.d-a8000da62a82ae9f7270397e03ec59d2e0646a3c.tar.gz |
readded eglot init module
-rw-r--r-- | init.el | 3 | ||||
-rw-r--r-- | init/eglot/init-eglot.el | 4 |
2 files changed, 7 insertions, 0 deletions
@@ -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) |