summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2023-03-25 03:24:16 -0400
committerJohn Turner <jturner.usa@gmail.com>2023-03-26 00:20:56 -0400
commitee79cc489b871e8acb33ee3a4f1f2cee54382813 (patch)
tree5645a593409b737fe146a8b231ae065dcb21b41a
parent8e08d49a9496b330ffdb46009c1028a554ea9a3b (diff)
downloademacs.d-ee79cc489b871e8acb33ee3a4f1f2cee54382813.tar.gz
rm'd eglot config, it has all the servers I use setup by default now
-rw-r--r--init.el3
-rw-r--r--init/eglot/init-eglot-servers.el9
-rw-r--r--init/eglot/init-eglot.el7
3 files changed, 0 insertions, 19 deletions
diff --git a/init.el b/init.el
index e8fb9d2..a73be6b 100644
--- a/init.el
+++ b/init.el
@@ -65,9 +65,6 @@
(when (require? 'company)
(require 'init-company))
-(when (require? 'eglot)
- (require 'init-eglot))
-
(when (require? 'flycheck)
(require 'init-flycheck))
diff --git a/init/eglot/init-eglot-servers.el b/init/eglot/init-eglot-servers.el
deleted file mode 100644
index 2dce402..0000000
--- a/init/eglot/init-eglot-servers.el
+++ /dev/null
@@ -1,9 +0,0 @@
-(defvar init-eglot-server-clangd '((c-mode c++-mode) .
- ("clangd"
- "--header-insersion=never")))
-
-(defvar init-eglot-server-rust-analyzer '((rust-mode) .
- ("rust-analyzer")))
-
-(add-to-list 'eglot-server-programs init-eglot-server-clangd)
-(add-to-list 'eglot-server-programs init-eglot-server-rust-analyzer)
diff --git a/init/eglot/init-eglot.el b/init/eglot/init-eglot.el
deleted file mode 100644
index dd85cca..0000000
--- a/init/eglot/init-eglot.el
+++ /dev/null
@@ -1,7 +0,0 @@
-(require 'eglot)
-
-(setq eglot-autoshutdown t)
-
-(load "init-eglot-servers")
-
-(provide 'init-eglot)