summaryrefslogtreecommitdiff
path: root/init/lsp-mode/init-lsp-mode.el
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2022-10-07 03:10:21 -0400
committerJohn Turner <jturner.usa@gmail.com>2022-10-07 03:10:21 -0400
commit6fac8a28da9bf30da71941340505c2316d0db5a3 (patch)
treef7d840005abe0195e093fa0db6f1e44ecba0ba8d /init/lsp-mode/init-lsp-mode.el
parentceaa741cfb13938aa359f33f926ccdcb2689f303 (diff)
downloademacs.d-6fac8a28da9bf30da71941340505c2316d0db5a3.tar.gz
changed the config-* prefix to init-* for all of the init files
Diffstat (limited to 'init/lsp-mode/init-lsp-mode.el')
-rw-r--r--init/lsp-mode/init-lsp-mode.el19
1 files changed, 19 insertions, 0 deletions
diff --git a/init/lsp-mode/init-lsp-mode.el b/init/lsp-mode/init-lsp-mode.el
new file mode 100644
index 0000000..f77e503
--- /dev/null
+++ b/init/lsp-mode/init-lsp-mode.el
@@ -0,0 +1,19 @@
+(require 'lsp-mode)
+(require 'flycheck)
+
+(setq lsp-enable-dap-auto-configure nil
+ lsp-enable-folding nil
+ lsp-enable-indentation t
+ lsp-enable-on-type-formatting nil
+ lsp-completion-enable nil
+ lsp-enable-snippet nil
+ lsp-modeline-code-actions-enable nil
+ lsp-lens-enable nil
+ lsp-signature-auto-activate nil
+ lsp-eldoc-render-all t
+ lsp-rls-server-command nil
+ lsp-enable-suggest-server-download nil)
+
+(load "init-lsp-mode-disable-install-server")
+
+(provide 'init-lsp-mode)