summaryrefslogtreecommitdiff
path: root/fnl/config/lsp
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/config/lsp')
-rw-r--r--fnl/config/lsp/lsp-installer.fnl6
1 files changed, 3 insertions, 3 deletions
diff --git a/fnl/config/lsp/lsp-installer.fnl b/fnl/config/lsp/lsp-installer.fnl
index 9cc793b..c08f1d6 100644
--- a/fnl/config/lsp/lsp-installer.fnl
+++ b/fnl/config/lsp/lsp-installer.fnl
@@ -27,15 +27,15 @@
(let [handlers (require :config.lsp.handlers)]
{:on_attach handlers.on-attach :capabilities (handlers.capabilities)}))
-(def- jsonls-opts []
+(def- jsonls-opts
(let [jsonls-opts (require :config.lsp.settings.jsonls)]
(vim.tbl_deep_extend :force jsonls-opts handler-opts)))
-(def- sumneko-lua-opts []
+(def- sumneko-lua-opts
(let [sumneko-lua (require :config.lsp.settings.sumneko-lua)]
(vim.tbl_deep_extend :force sumneko-lua.opts handler-opts)))
-(def- pyright-opts []
+(def- pyright-opts
(let [pyright (require :config.lsp.settings.pyright)]
(vim.tbl_deep_extend :force pyright.opts handler-opts)))