Skip to content

Instantly share code, notes, and snippets.

@Hellowor1d
Last active May 11, 2017 06:28
Show Gist options
  • Save Hellowor1d/5a62490e892fd62a5322458b47ce07d8 to your computer and use it in GitHub Desktop.
Save Hellowor1d/5a62490e892fd62a5322458b47ce07d8 to your computer and use it in GitHub Desktop.
Visual Studio Code Sync Settings GIST
{"lastUpload":"2017-05-11T06:27:20.921Z","extensionVersion":"v2.7.0"}
[
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "ac3a3342-db76-40ef-9277-4657632d3bfe",
"publisherDisplayName": "Shan Khan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "2.7.0"
}
]
// 将键绑定放入此文件中以覆盖默认值
[
]
// 将设置放入此文件中以覆盖默认设置
{
"editor.fontFamily": "Fira Code",
// 一个制表符等于的空格数。该设置在 `editor.detectIndentation` 启用时根据文件内容进行重写。
"editor.tabSize": 4,
// 控制编辑器中呈现空白字符的方式,可能为“无”、“边界”和“全部”。“边界”选项不会在单词之间呈现单空格。
"editor.renderWhitespace": "none",
// 配置 glob 模式以排除文件和文件夹。
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true
},
// 控制光标样式,接受的值为 "block"、"line" 和 "underline"
"editor.cursorStyle": "line",
// 按 "Tab" 时插入空格。该设置在 `editor.detectIndentation` 启用时根据文件内容进行重写。
"editor.insertSpaces": true,
"editor.fontLigatures": true,
// 控制字体系列。
// "editor.fontFamily": "'Yahei Consolas Hybrid','DejaVu Sans Mono','Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
// 以像素为单位控制字号。
"editor.fontSize": 16,
// 控制已更新文件的自动保存。接受的值:“off”、"afterDelay”、"onFocusChange”(编辑器失去焦点)、"onWindowChange”(窗口失去焦点)。如果设置为“afterDelay”,则可在 "files.autoSaveDelay" 中配置延迟。
"files.autoSave": "onFocusChange",
// 调整窗口的缩放级别。原始大小是 0,每次递增(例如 1)或递减(例如 -1)表示放大或缩小 20%。也可以输入小数以便以更精细的粒度调整缩放级别。
"window.zoomLevel": 0.5,
// 控制编辑器是否应突出显示选项的近似匹配
"editor.selectionHighlight": false,
// 控制终端的字体系列,这在编辑器中是默认的。fontFamily 的值。
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
// 控制终端游标是否闪烁。
"terminal.integrated.cursorBlinking": true,
// 配置 glob 模式以排除文件和文件夹。
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/*.js": {"when": "$(basename).ts"},
"**/*.map": {"when": "$(basename).map"}
},
// 检查工作区中的 TypeScript 版本是否可用。
"typescript.check.workspaceVersion": true,
// 检查全局安装的 TypeScript 编译器(例如 tsc )是否不同于使用的 TypeScript 语言服务。
"typescript.check.tscVersion": false,
"sync.gist": "5a62490e892fd62a5322458b47ce07d8",
"sync.lastUpload": "",
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastDownload": "2017-04-11T11:34:23.974Z",
"sync.version": 262,
"sync.showSummary": false,
"sync.forceDownload": false,
"sync.workspaceSync": false,
"sync.anonymousGist": false,
"vsicons.projectDetection.autoReload": true,
"workbench.colorTheme": "Monokai",
"workbench.iconTheme": "vscode-icons",
"sync.host": "",
"sync.pathPrefix": "",
"sync.quietSync": false
}
{"version":"7.5.1","status":1,"welcomeShown":true}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment