Skip to content

Instantly share code, notes, and snippets.

@maads
Last active February 20, 2019 07:39
Show Gist options
  • Save maads/f49fb1de42c54719a1c7 to your computer and use it in GitHub Desktop.
Save maads/f49fb1de42c54719a1c7 to your computer and use it in GitHub Desktop.
VS Code config
{
"editor.renderWhitespace": "boundary",
"editor.formatOnType": true,
"editor.insertSpaces": true,
"editor.dragAndDrop": true,
"editor.wordWrap": "bounded",
"search.exclude": {
".git": true,
"node_modules": true,
"bower_components": true,
"tmp": true,
"**/dist/**": true,
"target": true,
"**/.cache/**": true,
"platforms/**": false,
"**/webapp": false,
"**/www/**": true,
"**/target/**": true,
"plugins/**": true
},
"files.exclude": {
"**/node_modules": true,
"**/target/**": true,
"**/webapp": false,
"**/www/**": true,
"/node_modules/": true,
"dist/**": true,
"node_modules": true,
"platforms/**": true,
"plugins/**": true
},
"files.trimTrailingWhitespace": true,
"files.autoSave": "onWindowChange",
"window.zoomLevel": 1,
"editor.wordWrapColumn": 140,
"vsicons.presets.hideFolders": true,
"workbench.iconTheme": "material-icon-theme",
"vsicons.projectDetection.disableDetect": true,
"vsicons.dontShowNewVersionMessage": true,
"git.enabled": true,
"editor.codeLens": true,
"javascript.referencesCodeLens.enabled": true,
"typescript.implementationsCodeLens.enabled": true,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
// "editor.fontFamily": "'Monoid Retina Tight Small''",
// "editor.fontFamily": "'Hasklig",
"editor.fontFamily": "'Fira Code'",
"editor.fontLigatures": true,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true,
"suppressWelcomeNotice": true
},
"explorer.openEditors.visible": 0,
"window.title": "${dirty}${separator}${rootName}${separator}${activeEditorLong}${separator}",
"typescript.referencesCodeLens.enabled": true,
"workbench.editor.enablePreview": false,
"gitlens.keymap": "alternate",
"gitlens.historyExplorer.enabled": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"diffEditor.renderSideBySide": false,
"workbench.colorTheme": "Winter is Coming (Dark)",
"prettier.singleQuote": true,
"workbench.statusBar.feedback.visible": false,
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"editor.minimap.showSlider": "always",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment