Skip to content

Instantly share code, notes, and snippets.

@black-black-cat
Last active May 27, 2017 16:10
Show Gist options
  • Save black-black-cat/e68ce078313b605801646cd84885e47d to your computer and use it in GitHub Desktop.
Save black-black-cat/e68ce078313b605801646cd84885e47d to your computer and use it in GitHub Desktop.
vscode 用户配置
{
"window.zoomLevel": 1,
"editor.fontSize": 20,
"files.autoSave": "onFocusChange",
"editor.fontFamily": "'source code pro','lucida console',Consolas, 'Courier New', monospace",
"editor.renderWhitespace": "boundary",
"extensions.autoUpdate": true,
"editor.wrappingColumn": 0,
"editor.lineHeight": 29,
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/node_modules/**": true
},
// after 1.12
"workbench.colorCustomizations": {
// "editor.selectionBackground": "#4455ff",
// "editor.selectionHighlightBackground": "#135564"
"editor.selectionBackground": "#0000cc80",
"editor.selectionHighlightBackground": "#0000cc80",
"editor.inactiveSelectionBackground": "#11666630",
"editor.wordHighlightBackground": "#55550030",
"editor.wordHighlightStrongBackground": "#00550030",
"editor.findMatchBackground": "#33cc3328"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment