Skip to content

Instantly share code, notes, and snippets.

@var-bin
Last active August 22, 2019 18:59
Show Gist options
  • Save var-bin/652575c202a898939ea103457eabeda5 to your computer and use it in GitHub Desktop.
Save var-bin/652575c202a898939ea103457eabeda5 to your computer and use it in GitHub Desktop.
VS Code User Settings
// Place your settings in this file to overwrite the default settings
{
// editor section
"editor.fontSize": 18,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.renderWhitespace": "all",
"editor.renderControlCharacters": false,
"editor.renderIndentGuides": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.dragAndDrop": true,
"editor.find.seedSearchStringFromSelection": false,
"editor.wordWrapColumn": 120,
// diffEditor section
"diffEditor.renderSideBySide": true,
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.renderIndicators": true,
// files section
"files.insertFinalNewline": true,
"files.encoding": "utf8",
"files.eol": "\r\n",
"files.associations": {
"*.html": "html"
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/bower_components/**": true,
"**/dist/**": true,
"**/node_modules/**": true
},
"files.trimTrailingWhitespace": true,
// git section
"git.enabled": true,
"git.autofetch": false,
"git.showInlineOpenFileAction": false,
// css/scss/less/etc section
"css.lint.duplicateProperties": "warning",
"css.lint.zeroUnits": "warning",
"scss.lint.zeroUnits": "warning",
"less.lint.zeroUnits": "warning",
"less.validate": false,
"stylelint.enable": true,
// telemetry section
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
// workbench section
"workbench.colorCustomizations": {},
// terminal section
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
// vsicons section
// window section
"window.title": "${dirty}${activeEditorLong}${separator}${appName}",
// extensions section
"extensions.autoUpdate": false,
// debug section
"debug.inlineValues": true,
"debug.allowBreakpointsEverywhere": true,
// html section
"html.format.endWithNewline": true,
"workbench.startupEditor": "newUntitledFile",
"window.zoomLevel": 1,
"csscomb.preset": "C:\\Users\\vrybka\\.csscomb.json",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"workbench.colorTheme": "MomoDark",
"editor.fontLigatures": true,
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.renderFinalNewline": true,
"files.trimFinalNewlines": true,
// allow emmet in js files
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.triggerExpansionOnTab": true,
"editor.foldingStrategy": "indentation",
"explorer.confirmDragAndDrop": false,
"workbench.iconTheme": "vscode-icons",
"vsicons.dontShowNewVersionMessage": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment