diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-02-21 15:43:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-21 15:43:48 +0800 |
commit | 604d7ff0446d2cd5a0786cb7ace95f5dfc8f41e6 (patch) | |
tree | 781792ce96653d8813a583646ad03c0b337cb834 /script/config | |
parent | 7baf51cb7879aa39d4d9b9911300e49ee34d3ace (diff) | |
parent | e518eed9efd99c46b79c9413c5f34a0f675ab9e6 (diff) | |
download | lua-language-server-604d7ff0446d2cd5a0786cb7ace95f5dfc8f41e6.zip |
Merge pull request #959 from CppCXY/master
format support default config by setting
Diffstat (limited to 'script/config')
-rw-r--r-- | script/config/config.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/script/config/config.lua b/script/config/config.lua index ea87893d..8c06278f 100644 --- a/script/config/config.lua +++ b/script/config/config.lua @@ -209,6 +209,8 @@ local Template = { ['Lua.window.statusBar'] = Type.Boolean >> true, ['Lua.window.progressBar'] = Type.Boolean >> true, ['Lua.format.enable'] = Type.Boolean >> true, + ['Lua.format.defaultConfig'] = Type.Hash(Type.String, Type.String) + >> {}, ['Lua.IntelliSense.traceLocalSet'] = Type.Boolean >> false, ['Lua.IntelliSense.traceReturn'] = Type.Boolean >> false, ['Lua.IntelliSense.traceBeSetted'] = Type.Boolean >> false, |