From 96e975e260446a80462f90ca68ff976a1d459ceb Mon Sep 17 00:00:00 2001 From: Kristijan Husak Date: Thu, 30 May 2024 14:29:41 +0200 Subject: [PATCH] chore(dev): Add .luarc.json file --- .luarc.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .luarc.json diff --git a/.luarc.json b/.luarc.json new file mode 100644 index 000000000..0158c9a98 --- /dev/null +++ b/.luarc.json @@ -0,0 +1,34 @@ +{ + "$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json", + "diagnostics": { + "globals": [ + "vim" + ] + }, + "hint": { + "enable": true + }, + "runtime": { + "path": [ + "?.lua", + "?/init.lua" + ], + "pathStrict": true, + "version": "LuaJIT" + }, + "telemetry": { + "enable": false + }, + "workspace": { + "checkThirdParty": "Disable", + "ignoreDir": [ + ".git" + ], + "library": [ + "./lua", + "$VIMRUNTIME/lua", + "${3rd}/luv/library", + "./tests/.deps/plugins/plenary" + ] + } +}