diff options
author | sumneko <sumneko@hotmail.com> | 2022-02-18 02:53:41 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2022-02-18 02:53:41 +0800 |
commit | 4d477fa2e0357cd7f643b73c9098784f4019c643 (patch) | |
tree | 13c43adff0dcc60193a4ada869e9092f528dc857 /script | |
parent | f7e0e7a4245578af8cef9eb5e3ec9ce65113684e (diff) | |
download | lua-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.lua | 2 |
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, |