From 4932d32cae9a2a63226b67e6678d459b773f1f8b Mon Sep 17 00:00:00 2001 From: aktersnurra Date: Sat, 23 Apr 2022 21:22:24 +0200 Subject: fix(lsp): error loading capabilities and format --- fnl/config/lsp/settings/sumneko-lua.fnl | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) (limited to 'fnl/config/lsp/settings') diff --git a/fnl/config/lsp/settings/sumneko-lua.fnl b/fnl/config/lsp/settings/sumneko-lua.fnl index acc8df2..d40fe9b 100644 --- a/fnl/config/lsp/settings/sumneko-lua.fnl +++ b/fnl/config/lsp/settings/sumneko-lua.fnl @@ -2,8 +2,28 @@ (module config.lsp.settings.sumneko-lua) (def- workspace - {:library {(vim.fn.expand :$VIMRUNTIME/lua) true - (vim.fn.expand :$VIMRUNTIME/lua/vim/lsp) true}}) + {:library {(vim.fn.expand "$VIMRUNTIME/lua") true + (vim.fn.expand "$VIMRUNTIME/lua/vim/lsp") true}}) +(def- diagnostics + {:globals ["vim" + "map" + "filter" + "range" + "reduce" + "head" + "tail" + "nth" + "use" + "describe" + "it" + "dump"]}) -(def opts {:settings {:Lua {:diagnostics {:globals [ :vim ]} :workspace workspace}}}) +(def- runtime + {:version "LuaJIT" + :path (vim.split package.path ";")}) + +(def opts + {:settings {:Lua {:diagnostics diagnostics + :workspace workspace + :runtime runtime}}}) -- cgit v1.2.3-70-g09d2