Skip to content

Commit 96e975e

Browse files
chore(dev): Add .luarc.json file
1 parent b96dd85 commit 96e975e

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.luarc.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
3+
"diagnostics": {
4+
"globals": [
5+
"vim"
6+
]
7+
},
8+
"hint": {
9+
"enable": true
10+
},
11+
"runtime": {
12+
"path": [
13+
"?.lua",
14+
"?/init.lua"
15+
],
16+
"pathStrict": true,
17+
"version": "LuaJIT"
18+
},
19+
"telemetry": {
20+
"enable": false
21+
},
22+
"workspace": {
23+
"checkThirdParty": "Disable",
24+
"ignoreDir": [
25+
".git"
26+
],
27+
"library": [
28+
"./lua",
29+
"$VIMRUNTIME/lua",
30+
"${3rd}/luv/library",
31+
"./tests/.deps/plugins/plenary"
32+
]
33+
}
34+
}

0 commit comments

Comments
 (0)