From 0edde97b51a5247bd4db351a38d5f36131b642f7 Mon Sep 17 00:00:00 2001 From: takuto Date: Sun, 7 Jan 2024 04:24:16 +0900 Subject: [PATCH] fix(ci): fix abs path to libs in luarc (#1267) --- .github/workflows/.luarc.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/.luarc.json b/.github/workflows/.luarc.json index 2186dc0bc..e83431278 100644 --- a/.github/workflows/.luarc.json +++ b/.github/workflows/.luarc.json @@ -1,12 +1,12 @@ { "$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json", - "runtime.version": "LuaJIT", - "runtime.path": [ + "Lua.runtime.version": "LuaJIT", + "Lua.runtime.path": [ "lua/?.lua", "lua/?/init.lua" ], "Lua.workspace.library": [ - "/github/workspace/deps/neodev.nvim/types/stable" + "/home/runner/work/neorg/neorg/deps/neodev.nvim/types/stable" ], "Lua.diagnostics.libraryFiles": "Disable", "Lua.workspace.checkThirdParty": "Disable"