Settings File Locations
Depending on your platform, the user settings file is located here:
Windows: %APPDATA%\Code\User\settings.json
Mac: $HOME/Library/Application Support/Code/User/settings.json
Linux: $HOME/.config/Code/User/settings.json
{
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"editor.minimap.enabled": false, // 控制是否显示缩略图
"window.zoomLevel": 0,
"files.associations": {
"*.cjson": "jsonc",
"*.wxss": "css",
"*.wxs": "javascript",
"*.acss": "css",
"*.axml": "html",
"*.postcss": "scss"
},
"emmet.includeLanguages": {
"wxml": "html"
},
"minapp-vscode.disableAutoConfig": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.rendererType": "dom",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"workbench.iconTheme": "vscode-icons-mac",
"[vue]": {},
"[css]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[scss]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"search.followSymlinks": false,
"vsicons.dontShowNewVersionMessage": true,
"workbench.colorTheme": "Visual Studio Light",
"explorer.confirmDelete": false,
"gitlens.gitCommands.closeOnFocusOut": true,
"[json]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
}
}
