summaryrefslogtreecommitdiff
path: root/fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf@nexure.io>2022-06-01 08:17:52 +0200
committerGustaf Rydholm <gustaf@nexure.io>2022-06-01 08:18:06 +0200
commit02c402c9beef26879078fdff7a0452a4996fb256 (patch)
tree831f0ca949075e6ca338ae6c661ca9347638917a /fnl
parent68ddcd0a4d858750bd1138501afb7e4d1a8f9922 (diff)
Remove brackets from ls setting values
Diffstat (limited to 'fnl')
-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)))