Add Lua Language Server settings for Conky.
This commit is contained in:
parent
3a6ae88440
commit
0f49838919
|
@ -3,5 +3,14 @@
|
||||||
"git.untrackedChanges": "hidden",
|
"git.untrackedChanges": "hidden",
|
||||||
"[typescript]": {
|
"[typescript]": {
|
||||||
"editor.defaultFormatter": "denoland.vscode-deno"
|
"editor.defaultFormatter": "denoland.vscode-deno"
|
||||||
}
|
},
|
||||||
|
"Lua.diagnostics.disable": [
|
||||||
|
// The custom functions for Conky must be global and start with lowercase
|
||||||
|
// "conky", so this warning has to be disabled.
|
||||||
|
"lowercase-global"
|
||||||
|
],
|
||||||
|
"Lua.diagnostics.globals": [
|
||||||
|
"conky",
|
||||||
|
"conky_parse"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue