1
Fork 0

Add Lua Language Server settings for Conky.

This commit is contained in:
Bauke 2023-04-28 13:24:45 +02:00
parent 3a6ae88440
commit 0f49838919
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 10 additions and 1 deletions

View File

@ -3,5 +3,14 @@
"git.untrackedChanges": "hidden",
"[typescript]": {
"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"
]
}