{
"window.zoomLevel": 0,
//让函数(名)和后面的括号之间加个空格
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
// gitfetch
"git.autofetch": true,
// 去除行末尾的空格
"files.trimTrailingWhitespace": true,
// 文件末尾插入新行
"files.insertFinalNewline": true,
// 编辑器换行
"editor.wordWrap": "off",
// 重新设定tabsize
"editor.tabSize": 4,
// 显示所有空行
"editor.renderWhitespace": "all",
// 禁用 minimap
"editor.minimap.enabled": false,
// 每次保存的时候自动格式化
"editor.formatOnSave": true,
// vscode默认启用了根据文件类型自动设置tabsize的选项
"editor.detectIndentation": true,
"editor.codeLens": false,
"editor.fontFamily": "JetBrains Mono",
"editor.unicodeHighlight.nonBasicASCII": false,
// 文件路径导航
"breadcrumbs.enabled": true,
"workbench.colorTheme": "Default Dark+",
"workbench.startupEditor": "none",
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"gitHistory.showEditorTitleMenuBarIcons": false,
// codeLens
"gitlens.codeLens.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.views.commitDetails.files.layout": "list",
// diffEditor
"diffEditor.experimental.showMoves": true,
"diffEditor.renderSideBySide": true,
"diffEditor.useInlineViewWhenSpaceIsLimited": false,
// remote
"remote.SSH.showLoginTerminal": true,
"remote.SSH.remotePlatform": {
"ts01": "linux",
"ts02": "linux",
"ts03": "linux"
},
// proxy
"http.proxy": "http://127.0.0.1:7890",
"http.proxyAuthorization": null,
"http.proxySupport": "on",
"http.proxyStrictSSL": false,
// terminal
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.integrated.defaultProfile.windows": "Git Bash",
// markdown
"markdown-pdf.displayHeaderFooter": false,
"[markdown]": {
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
"files.associations": {
"*.md": "markdown"
},
"markdown-pdf.executablePath": "C:\\\\Program Files\\\\Google\\\\Chrome\\\\Application\\\\chrome.exe",
}