Last active
March 17, 2022 09:58
-
-
Save chenchun/218ad6825de9bea241e497fe5fd3704b to your computer and use it in GitHub Desktop.
#vscode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ~/.config/Code/User/settings.json | |
{ | |
"workbench.colorTheme": "Quiet Light", | |
"window.title": "${activeEditorMedium}", | |
"clang.executable": "/usr/bin/clang-6.0", | |
"http.proxy": "http://example.com:8080", | |
"http.proxyStrictSSL": false, | |
"workbench.editor.enablePreview": false, | |
"go.inferGopath": true, | |
"go.toolsEnvVars": {"GOOS" : "linux"}, | |
"editor.fontFamily": "monospace", // ubuntu | |
"editor.minimap.enabled": false, | |
"editor.renderWhitespace": "all", | |
"editor.rulers": [80,120], | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 1000, | |
"go.gotoSymbol.includeImports": true, | |
"workbench.tree.indent": 14, //资源管理器文件树缩进 | |
"workbench.iconTheme": "vs-minimal", //资源管理器文件树主题带文件夹 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment