summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorsumneko <sumneko@hotmail.com>2022-02-18 02:53:41 +0800
committersumneko <sumneko@hotmail.com>2022-02-18 02:53:41 +0800
commit4d477fa2e0357cd7f643b73c9098784f4019c643 (patch)
tree13c43adff0dcc60193a4ada869e9092f528dc857 /script
parentf7e0e7a4245578af8cef9eb5e3ec9ce65113684e (diff)
downloadlua-language-server-4d477fa2e0357cd7f643b73c9098784f4019c643.zip
set `Lua.format.enable` default to `false`
formating is still WIP
Diffstat (limited to 'script')
-rw-r--r--script/config/config.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/config/config.lua b/script/config/config.lua
index ea87893d..e44b9372 100644
--- a/script/config/config.lua
+++ b/script/config/config.lua
@@ -208,7 +208,7 @@ local Template = {
['Lua.hint.arrayIndex'] = Type.Boolean >> 'Auto',
['Lua.window.statusBar'] = Type.Boolean >> true,
['Lua.window.progressBar'] = Type.Boolean >> true,
- ['Lua.format.enable'] = Type.Boolean >> true,
+ ['Lua.format.enable'] = Type.Boolean >> false,
['Lua.IntelliSense.traceLocalSet'] = Type.Boolean >> false,
['Lua.IntelliSense.traceReturn'] = Type.Boolean >> false,
['Lua.IntelliSense.traceBeSetted'] = Type.Boolean >> false,