summaryrefslogtreecommitdiff
path: root/fnl/config
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/config')
-rw-r--r--fnl/config/lsp/settings/sumneko-lua.fnl21
1 files changed, 21 insertions, 0 deletions
diff --git a/fnl/config/lsp/settings/sumneko-lua.fnl b/fnl/config/lsp/settings/sumneko-lua.fnl
new file mode 100644
index 0000000..5498f7e
--- /dev/null
+++ b/fnl/config/lsp/settings/sumneko-lua.fnl
@@ -0,0 +1,21 @@
+;; Config for a Lua language server.
+(module config.lsp.settings.sumneko-lua)
+
+(def- workspace
+ {: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- runtime
+ {:version "LuaJIT"
+ :path (vim.split package.path ";")})
+
+(def settings
+ {:settings {
+ :Lua {
+ :diagnostics diagnostics
+ :workspace workspace}}})
+
+(settings)