forked from zhaozg/lua-openssl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.neoconf.json
More file actions
42 lines (42 loc) · 862 Bytes
/
.neoconf.json
File metadata and controls
42 lines (42 loc) · 862 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"lspconfig": {
"enable": true,
"lua_ls": {
"Lua": {
"runtime": {
"version": "LuaJIT"
},
"diagnostics": {
"enable": true,
"globals": [
]
},
"format": {
"format": false
},
"workspace": {
"checkThirdParty": false,
"ignoreDir": [
"/.luacheckrc"
],
"useGitIgnore": true,
"maxPreload": 1024,
"preloadFileSize": 64
},
"completion": {
"callSnippet": "Replace"
}
}
},
"null-ls": {
"clang_format": {
},
"filetype": [ "lua", "c" ],
"sources" : [
"null-ls.builtins.formatting.stylua",
"null-ls.diagnostics.luacheck",
"null-ls.builtins.formatting.clang_format"
]
}
}
}