diff --git a/setting/build.lua b/setting/build.lua
index b6fea703ae5362c2022c2c23f1daaec34f7e4435..c0b6f28a3888abcb833af2f2af08f8f54e3b11fa 100644
--- a/setting/build.lua
+++ b/setting/build.lua
@@ -8,11 +8,15 @@ local function copyWithNLS(t, callback)
     local nt = {}
     for k, v in pairs(t) do
         if type(v) == 'string' then
-            nt[k] = callback(v) or v
+            v = callback(v) or v
         elseif type(v) == 'table' then
-            nt[k] = copyWithNLS(v, callback)
-        else
-            nt[k] = v
+            v = copyWithNLS(v, callback)
+        end
+        nt[k] = v
+        if type(k) == 'string' and k:sub(1, #'Lua.') == 'Lua.' then
+            nt[k:sub(#'Lua.' + 1)] = {
+                ['$ref'] = '#/properties/' .. k
+            }
         end
     end
     return nt
diff --git a/setting/schema-zh-cn.json b/setting/schema-zh-cn.json
index 154dfd5b82ef44e5488235871799a6633b262522..0b0249c82ed325c82bf9bc262dbb8bce69b728cf 100644
--- a/setting/schema-zh-cn.json
+++ b/setting/schema-zh-cn.json
@@ -1437,6 +1437,156 @@
             "markdownDescription": "在这里添加私有的第三方库适配文件路径,请参考内置的[配置文件路径](https://github.com/sumneko/lua-language-server/tree/master/meta/3rd)",
             "scope": "resource",
             "type": "array"
+        },
+        "color.mode": {
+            "$ref": "#/properties/Lua.color.mode"
+        },
+        "completion.autoRequire": {
+            "$ref": "#/properties/Lua.completion.autoRequire"
+        },
+        "completion.callSnippet": {
+            "$ref": "#/properties/Lua.completion.callSnippet"
+        },
+        "completion.displayContext": {
+            "$ref": "#/properties/Lua.completion.displayContext"
+        },
+        "completion.enable": {
+            "$ref": "#/properties/Lua.completion.enable"
+        },
+        "completion.keywordSnippet": {
+            "$ref": "#/properties/Lua.completion.keywordSnippet"
+        },
+        "completion.requireSeparator": {
+            "$ref": "#/properties/Lua.completion.requireSeparator"
+        },
+        "completion.showParams": {
+            "$ref": "#/properties/Lua.completion.showParams"
+        },
+        "completion.showWord": {
+            "$ref": "#/properties/Lua.completion.showWord"
+        },
+        "completion.workspaceWord": {
+            "$ref": "#/properties/Lua.completion.workspaceWord"
+        },
+        "diagnostics.disable": {
+            "$ref": "#/properties/Lua.diagnostics.disable"
+        },
+        "diagnostics.enable": {
+            "$ref": "#/properties/Lua.diagnostics.enable"
+        },
+        "diagnostics.globals": {
+            "$ref": "#/properties/Lua.diagnostics.globals"
+        },
+        "diagnostics.ignoredFiles": {
+            "$ref": "#/properties/Lua.diagnostics.ignoredFiles"
+        },
+        "diagnostics.libraryFiles": {
+            "$ref": "#/properties/Lua.diagnostics.libraryFiles"
+        },
+        "diagnostics.neededFileStatus": {
+            "$ref": "#/properties/Lua.diagnostics.neededFileStatus"
+        },
+        "diagnostics.severity": {
+            "$ref": "#/properties/Lua.diagnostics.severity"
+        },
+        "diagnostics.workspaceDelay": {
+            "$ref": "#/properties/Lua.diagnostics.workspaceDelay"
+        },
+        "diagnostics.workspaceRate": {
+            "$ref": "#/properties/Lua.diagnostics.workspaceRate"
+        },
+        "hint.enable": {
+            "$ref": "#/properties/Lua.hint.enable"
+        },
+        "hint.paramName": {
+            "$ref": "#/properties/Lua.hint.paramName"
+        },
+        "hint.paramType": {
+            "$ref": "#/properties/Lua.hint.paramType"
+        },
+        "hint.setType": {
+            "$ref": "#/properties/Lua.hint.setType"
+        },
+        "hover.enable": {
+            "$ref": "#/properties/Lua.hover.enable"
+        },
+        "hover.enumsLimit": {
+            "$ref": "#/properties/Lua.hover.enumsLimit"
+        },
+        "hover.previewFields": {
+            "$ref": "#/properties/Lua.hover.previewFields"
+        },
+        "hover.viewNumber": {
+            "$ref": "#/properties/Lua.hover.viewNumber"
+        },
+        "hover.viewString": {
+            "$ref": "#/properties/Lua.hover.viewString"
+        },
+        "hover.viewStringMax": {
+            "$ref": "#/properties/Lua.hover.viewStringMax"
+        },
+        "misc.parameters": {
+            "$ref": "#/properties/Lua.misc.parameters"
+        },
+        "runtime.builtin": {
+            "$ref": "#/properties/Lua.runtime.builtin"
+        },
+        "runtime.fileEncoding": {
+            "$ref": "#/properties/Lua.runtime.fileEncoding"
+        },
+        "runtime.nonstandardSymbol": {
+            "$ref": "#/properties/Lua.runtime.nonstandardSymbol"
+        },
+        "runtime.path": {
+            "$ref": "#/properties/Lua.runtime.path"
+        },
+        "runtime.plugin": {
+            "$ref": "#/properties/Lua.runtime.plugin"
+        },
+        "runtime.special": {
+            "$ref": "#/properties/Lua.runtime.special"
+        },
+        "runtime.unicodeName": {
+            "$ref": "#/properties/Lua.runtime.unicodeName"
+        },
+        "runtime.version": {
+            "$ref": "#/properties/Lua.runtime.version"
+        },
+        "signatureHelp.enable": {
+            "$ref": "#/properties/Lua.signatureHelp.enable"
+        },
+        "telemetry.enable": {
+            "$ref": "#/properties/Lua.telemetry.enable"
+        },
+        "window.progressBar": {
+            "$ref": "#/properties/Lua.window.progressBar"
+        },
+        "window.statusBar": {
+            "$ref": "#/properties/Lua.window.statusBar"
+        },
+        "workspace.checkThirdParty": {
+            "$ref": "#/properties/Lua.workspace.checkThirdParty"
+        },
+        "workspace.ignoreDir": {
+            "$ref": "#/properties/Lua.workspace.ignoreDir"
+        },
+        "workspace.ignoreSubmodules": {
+            "$ref": "#/properties/Lua.workspace.ignoreSubmodules"
+        },
+        "workspace.library": {
+            "$ref": "#/properties/Lua.workspace.library"
+        },
+        "workspace.maxPreload": {
+            "$ref": "#/properties/Lua.workspace.maxPreload"
+        },
+        "workspace.preloadFileSize": {
+            "$ref": "#/properties/Lua.workspace.preloadFileSize"
+        },
+        "workspace.useGitIgnore": {
+            "$ref": "#/properties/Lua.workspace.useGitIgnore"
+        },
+        "workspace.userThirdParty": {
+            "$ref": "#/properties/Lua.workspace.userThirdParty"
         }
     },
     "title": "setting",
diff --git a/setting/schema.json b/setting/schema.json
index 3efa3efca77e93899ce80bf929ded324287be0bf..53e89f0fde70012be84f04e1ef1b65546eeaed86 100644
--- a/setting/schema.json
+++ b/setting/schema.json
@@ -1437,6 +1437,156 @@
             "markdownDescription": "Add private third-party library configuration file paths here, please refer to the built-in [configuration file path](https://github.com/sumneko/lua-language-server/tree/master/meta/3rd)",
             "scope": "resource",
             "type": "array"
+        },
+        "color.mode": {
+            "$ref": "#/properties/Lua.color.mode"
+        },
+        "completion.autoRequire": {
+            "$ref": "#/properties/Lua.completion.autoRequire"
+        },
+        "completion.callSnippet": {
+            "$ref": "#/properties/Lua.completion.callSnippet"
+        },
+        "completion.displayContext": {
+            "$ref": "#/properties/Lua.completion.displayContext"
+        },
+        "completion.enable": {
+            "$ref": "#/properties/Lua.completion.enable"
+        },
+        "completion.keywordSnippet": {
+            "$ref": "#/properties/Lua.completion.keywordSnippet"
+        },
+        "completion.requireSeparator": {
+            "$ref": "#/properties/Lua.completion.requireSeparator"
+        },
+        "completion.showParams": {
+            "$ref": "#/properties/Lua.completion.showParams"
+        },
+        "completion.showWord": {
+            "$ref": "#/properties/Lua.completion.showWord"
+        },
+        "completion.workspaceWord": {
+            "$ref": "#/properties/Lua.completion.workspaceWord"
+        },
+        "diagnostics.disable": {
+            "$ref": "#/properties/Lua.diagnostics.disable"
+        },
+        "diagnostics.enable": {
+            "$ref": "#/properties/Lua.diagnostics.enable"
+        },
+        "diagnostics.globals": {
+            "$ref": "#/properties/Lua.diagnostics.globals"
+        },
+        "diagnostics.ignoredFiles": {
+            "$ref": "#/properties/Lua.diagnostics.ignoredFiles"
+        },
+        "diagnostics.libraryFiles": {
+            "$ref": "#/properties/Lua.diagnostics.libraryFiles"
+        },
+        "diagnostics.neededFileStatus": {
+            "$ref": "#/properties/Lua.diagnostics.neededFileStatus"
+        },
+        "diagnostics.severity": {
+            "$ref": "#/properties/Lua.diagnostics.severity"
+        },
+        "diagnostics.workspaceDelay": {
+            "$ref": "#/properties/Lua.diagnostics.workspaceDelay"
+        },
+        "diagnostics.workspaceRate": {
+            "$ref": "#/properties/Lua.diagnostics.workspaceRate"
+        },
+        "hint.enable": {
+            "$ref": "#/properties/Lua.hint.enable"
+        },
+        "hint.paramName": {
+            "$ref": "#/properties/Lua.hint.paramName"
+        },
+        "hint.paramType": {
+            "$ref": "#/properties/Lua.hint.paramType"
+        },
+        "hint.setType": {
+            "$ref": "#/properties/Lua.hint.setType"
+        },
+        "hover.enable": {
+            "$ref": "#/properties/Lua.hover.enable"
+        },
+        "hover.enumsLimit": {
+            "$ref": "#/properties/Lua.hover.enumsLimit"
+        },
+        "hover.previewFields": {
+            "$ref": "#/properties/Lua.hover.previewFields"
+        },
+        "hover.viewNumber": {
+            "$ref": "#/properties/Lua.hover.viewNumber"
+        },
+        "hover.viewString": {
+            "$ref": "#/properties/Lua.hover.viewString"
+        },
+        "hover.viewStringMax": {
+            "$ref": "#/properties/Lua.hover.viewStringMax"
+        },
+        "misc.parameters": {
+            "$ref": "#/properties/Lua.misc.parameters"
+        },
+        "runtime.builtin": {
+            "$ref": "#/properties/Lua.runtime.builtin"
+        },
+        "runtime.fileEncoding": {
+            "$ref": "#/properties/Lua.runtime.fileEncoding"
+        },
+        "runtime.nonstandardSymbol": {
+            "$ref": "#/properties/Lua.runtime.nonstandardSymbol"
+        },
+        "runtime.path": {
+            "$ref": "#/properties/Lua.runtime.path"
+        },
+        "runtime.plugin": {
+            "$ref": "#/properties/Lua.runtime.plugin"
+        },
+        "runtime.special": {
+            "$ref": "#/properties/Lua.runtime.special"
+        },
+        "runtime.unicodeName": {
+            "$ref": "#/properties/Lua.runtime.unicodeName"
+        },
+        "runtime.version": {
+            "$ref": "#/properties/Lua.runtime.version"
+        },
+        "signatureHelp.enable": {
+            "$ref": "#/properties/Lua.signatureHelp.enable"
+        },
+        "telemetry.enable": {
+            "$ref": "#/properties/Lua.telemetry.enable"
+        },
+        "window.progressBar": {
+            "$ref": "#/properties/Lua.window.progressBar"
+        },
+        "window.statusBar": {
+            "$ref": "#/properties/Lua.window.statusBar"
+        },
+        "workspace.checkThirdParty": {
+            "$ref": "#/properties/Lua.workspace.checkThirdParty"
+        },
+        "workspace.ignoreDir": {
+            "$ref": "#/properties/Lua.workspace.ignoreDir"
+        },
+        "workspace.ignoreSubmodules": {
+            "$ref": "#/properties/Lua.workspace.ignoreSubmodules"
+        },
+        "workspace.library": {
+            "$ref": "#/properties/Lua.workspace.library"
+        },
+        "workspace.maxPreload": {
+            "$ref": "#/properties/Lua.workspace.maxPreload"
+        },
+        "workspace.preloadFileSize": {
+            "$ref": "#/properties/Lua.workspace.preloadFileSize"
+        },
+        "workspace.useGitIgnore": {
+            "$ref": "#/properties/Lua.workspace.useGitIgnore"
+        },
+        "workspace.userThirdParty": {
+            "$ref": "#/properties/Lua.workspace.userThirdParty"
         }
     },
     "title": "setting",