Skip to content

Instantly share code, notes, and snippets.

@ZhihaoLau
Created January 4, 2018 11:59
Show Gist options
  • Save ZhihaoLau/52dd3c29c99c97ad9024a3b259ff60b8 to your computer and use it in GitHub Desktop.
Save ZhihaoLau/52dd3c29c99c97ad9024a3b259ff60b8 to your computer and use it in GitHub Desktop.
VSCode config
{
"terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\cmd.exe",
"window.zoomLevel": 0,
// Controls the font family.
"editor.fontFamily": "'Operator Mono', Consolas, 'Courier New', monospace, 微软雅黑",
// "editor.fontFamily": "Consolas, 'Courier New', monospace, 微软雅黑",
// Controls the font weight.
"editor.fontWeight": "300",
// Controls the line height. Use 0 to compute the lineHeight from the fontSize.
"editor.lineHeight": 30,
"editor.fontSize": 16,
"workbench.fontAliasing": "antialiased",
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Gruvbox Dark (Medium Contrast)",
"vim.disableAnnoyingNeovimMessage": true,
"vim.useCtrlKeys": false,
"editor.tabSize": 4,
"editor.insertSpaces": true,
// "editor.selectionHighlight": false,
// "editor.occurrencesHighlight": false,
"editor.minimap.enabled": false,
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/dist": true,
"**/bower_components": true,
"**/tmp": true
},
"editor.mouseWheelScrollSensitivity": 2,
"workbench.editor.enablePreview": false,
"editor.smoothScrolling": true,
"explorer.openEditors.visible": 0,
"vsicons.dontShowNewVersionMessage": true,
"material-icon-theme.showUpdateMessage": false,
"explorer.confirmDragAndDrop": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": true,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressUpdateNotice": true,
"suppressWelcomeNotice": false
},
"editor.rulers": [80],
"puglint.enable": true
}
@ZhihaoLau
Copy link
Author

yy 20180104200109
yy 20180104200129
yy 20180104200137

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment