-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy path.luarc.json
More file actions
24 lines (24 loc) · 698 Bytes
/
Copy path.luarc.json
File metadata and controls
24 lines (24 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
"workspace": {
"library": [
"$VIMRUNTIME",
"$VIMRUNTIME/lua",
"${3rd}/busted/library",
"${3rd}/luassert/library",
"${3rd}/luv/library"
]
},
"runtime": {
"version": "LuaJIT",
"path": [
"lua/?.lua",
"lua/?/init.lua",
"/usr/share/luajit-2.1.0-beta3/?.lua",
"/usr/local/share/lua/5.1/?.lua",
"/usr/local/share/lua/5.1/?/init.lua",
"/usr/share/lua/5.1/?.lua",
"/usr/share/lua/5.1/?/init.lua"
]
}
}