Skip to content

Instantly share code, notes, and snippets.

@huynhsamha
Created February 26, 2020 02:34
Show Gist options
  • Save huynhsamha/da4dfc1f72e9544ec21e232e4613c8c7 to your computer and use it in GitHub Desktop.
Save huynhsamha/da4dfc1f72e9544ec21e232e4613c8c7 to your computer and use it in GitHub Desktop.
VS Code - My favorite settings
{
// common settings
"window.zoomLevel": 1,
"workbench.statusBar.visible": true,
"editor.fontSize": 13,
"debug.console.fontSize": 13,
"markdown.preview.fontSize": 12,
"terminal.integrated.fontSize": 13,
"terminal.integrated.fontFamily": "Menlo for Powerline",
"workbench.startupEditor": "newUntitledFile",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.iconTheme": "vscode-icons",
"editor.renderWhitespace": "boundary",
"explorer.confirmDelete": false,
"editor.suggestSelection": "first",
// files
"files.exclude": {
"**/.classpath": true,
"**/.factorypath": true,
"**/.project": true,
"**/.settings": true,
"**/*.pyc": true
},
// extensions
"files.associations": {
".eslintrc": "jsonc",
"*.xtm": "html"
},
// lint code
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
// java
"java.errors.incompleteClasspath.severity": "ignore",
// cpp
"C_Cpp.clang_format_fallbackStyle": "WebKit",
// go
"go.formatTool": "gofmt",
"go.buildOnSave": "off"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment