From 69651df246a07a22dd4b025c0fdfffe5377fd194 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 6 Sep 2024 14:21:33 +0200 Subject: [PATCH] adding luarc --- .luarc.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .luarc.json diff --git a/.luarc.json b/.luarc.json new file mode 100644 index 0000000..7394b0d --- /dev/null +++ b/.luarc.json @@ -0,0 +1,19 @@ +{ + "runtime.version": "LuaJIT", + "runtime.path": ["lua/?.lua", "lua/?/init.lua"], + "diagnostics.globals": [ + "vim", + "ipairs", + "require", + "pcall", + "pairs", + "type", + "unpack", + "table", + "string", + "os", + "tostring", + ], + "workspace.checkThirdParty": false, + "workspace.library": ["$VIMRUNTIME", "./lua"] +}