-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.luarc.json
27 lines (27 loc) · 920 Bytes
/
.luarc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"diagnostics.globals": ["vim"],
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
"Lua.diagnostics.disable": [
"missing-parameter",
"param-type-mismatch",
"undefined-field",
"missing-parameter",
"cast-local-type"
],
"Lua.diagnostics.globals": ["vim", "_t", "require"],
"Lua.workspace.checkThirdParty": false,
"Lua.workspace.library": [
"runtime/lua",
"$HOME/.cache/nvim/lazy/neodev.nvim/types/nightly",
"/usr/share/nvim/runtime",
"$HOME/.cache/nvim/lazy/lazy.nvim/lua",
"$HOME/.cache/nvim/lazy/neotest/lua",
"$HOME/.cache/nvim/lazy/plenary.nvim/lua",
"$HOME/.cache/nvim/lazy/arshlib.nvim/lua",
"$HOME/.cache/nvim/lazy/nvim-cmp/lua",
"$HOME/.cache/nvim/lazy/LuaSnip/lua",
"$HOME/.cache/nvim/lazy/nvim-treesitter/lua",
"$HOME/.cache/nvim/lazy/null-ls.nvim/lua",
"${3rd}/luassert/library"
]
}