diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-03-15 21:07:14 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-03-15 21:07:14 +0800 |
commit | 9bde1d4431a466e894a81b533a3a037b9e574305 (patch) | |
tree | 6ce24ce672fbdf97c0a1592f461d5df4e562e259 /script/config.lua | |
parent | b552559036d6a635d51ea27da0b59fa9150ac27f (diff) | |
download | lua-language-server-9bde1d4431a466e894a81b533a3a037b9e574305.zip |
improve setting
Diffstat (limited to 'script/config.lua')
-rw-r--r-- | script/config.lua | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/script/config.lua b/script/config.lua index e34b1ca4..5273e0cd 100644 --- a/script/config.lua +++ b/script/config.lua @@ -126,23 +126,7 @@ local ConfigTemplate = { nonstandardSymbol = {{}, Str2Hash ';'}, plugin = {'.vscode/lua/plugin.lua', String}, fileEncoding = {'utf8', String}, - builtin = {{ - ['basic'] = 'enable', - ['bit'] = 'enable', - ['bit32'] = 'enable', - ['builtin'] = 'enable', - ['coroutine'] = 'enable', - ['debug'] = 'enable', - ['ffi'] = 'enable', - ['io'] = 'enable', - ['jit'] = 'enable', - ['math'] = 'enable', - ['os'] = 'enable', - ['package'] = 'enable', - ['string'] = 'enable', - ['table'] = 'enable', - ['utf8'] = 'enable', - }, Hash(String, String)}, + builtin = {{}, Hash(String, String)}, }, diagnostics = { enable = {true, Boolean}, |