Skip to content

Instantly share code, notes, and snippets.

@coltborg
Created June 2, 2018 16:30
Show Gist options
  • Save coltborg/f514c387f292b42cae82194ccc022164 to your computer and use it in GitHub Desktop.
Save coltborg/f514c387f292b42cae82194ccc022164 to your computer and use it in GitHub Desktop.
VS Code settings
{
"editor.fontFamily": "Dank Mono",
"editor.fontSize": 14,
"editor.lineNumbers": "relative",
"editor.glyphMargin": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.roundedSelection": true,
"editor.scrollBeyondLastLine": true,
"editor.wrappingIndent": "same",
"editor.mouseWheelScrollSensitivity": 1,
"editor.quickSuggestions": {
"strings": true
},
"editor.quickSuggestionsDelay": 10,
"editor.parameterHints": true,
"editor.autoClosingBrackets": true,
"editor.formatOnType": false,
"editor.suggestOnTriggerCharacters": true,
"editor.acceptSuggestionOnEnter": "smart",
"editor.selectionHighlight": true,
"editor.overviewRulerLanes": 3,
"editor.mouseWheelZoom": false,
"editor.fontLigatures": true,
"editor.hideCursorInOverviewRuler": false,
"editor.renderControlCharacters": true,
"editor.renderIndentGuides": true,
"editor.folding": true,
"editor.useTabStops": true,
"editor.trimAutoWhitespace": true,
"editor.stablePeek": false,
"diffEditor.renderSideBySide": true,
"diffEditor.ignoreTrimWhitespace": true,
"editor.wordBasedSuggestions": true,
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
},
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html",
"javascript": "javascriptreact"
},
"emmet.showAbbreviationSuggestions": true,
"workbench.editor.showTabs": true,
"workbench.editor.enablePreview": true,
"workbench.editor.enablePreviewFromQuickOpen": true,
"workbench.editor.openPositioning": "right",
"window.restoreFullscreen": false,
"window.zoomLevel": 0,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.DS_Store": true,
"node_modules" : true,
},
"files.associations": {
"*.mustache": "handlebars",
"*.variables": "less",
"*.overrides": "less"
},
"files.encoding": "utf8",
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.autoSave": "onFocusChange",
"files.autoSaveDelay": 1000,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/node_modules/**": true
},
"explorer.openEditors.visible": 9,
"explorer.autoReveal": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"git.enabled": true,
"git.path": null,
"git.autofetch": true,
"http.proxy": "",
"http.proxyStrictSSL": true,
"update.channel": "default",
"css.validate": false,
"css.lint.compatibleVendorPrefixes": "ignore",
"css.lint.vendorPrefix": "warning",
"css.lint.duplicateProperties": "ignore",
"css.lint.emptyRules": "warning",
"css.lint.importStatement": "ignore",
"css.lint.boxModel": "ignore",
"css.lint.universalSelector": "ignore",
"css.lint.zeroUnits": "error",
"css.lint.fontFaceProperties": "warning",
"css.lint.hexColorLength": "error",
"css.lint.argumentsInColorFunction": "error",
"css.lint.unknownProperties": "warning",
"css.lint.ieHack": "ignore",
"css.lint.unknownVendorSpecificProperties": "ignore",
"css.lint.propertyIgnoredDueToDisplay": "warning",
"css.lint.important": "ignore",
"css.lint.float": "ignore",
"css.lint.idSelector": "warning",
"scss.validate": false,
"scss.lint.compatibleVendorPrefixes": "warning",
"scss.lint.vendorPrefix": "warning",
"scss.lint.duplicateProperties": "warning",
"scss.lint.emptyRules": "warning",
"scss.lint.importStatement": "ignore",
"scss.lint.boxModel": "ignore",
"scss.lint.universalSelector": "ignore",
"scss.lint.zeroUnits": "warning",
"scss.lint.fontFaceProperties": "warning",
"scss.lint.hexColorLength": "error",
"scss.lint.argumentsInColorFunction": "error",
"scss.lint.unknownProperties": "warning",
"scss.lint.ieHack": "ignore",
"scss.lint.unknownVendorSpecificProperties": "ignore",
"scss.lint.propertyIgnoredDueToDisplay": "warning",
"scss.lint.important": "warning",
"scss.lint.float": "warning",
"scss.lint.idSelector": "warning",
"less.validate": false,
"less.lint.compatibleVendorPrefixes": "ignore",
"less.lint.vendorPrefix": "warning",
"less.lint.duplicateProperties": "ignore",
"less.lint.emptyRules": "warning",
"less.lint.importStatement": "ignore",
"less.lint.boxModel": "ignore",
"less.lint.universalSelector": "ignore",
"less.lint.zeroUnits": "ignore",
"less.lint.fontFaceProperties": "warning",
"less.lint.hexColorLength": "error",
"less.lint.argumentsInColorFunction": "error",
"less.lint.unknownProperties": "warning",
"less.lint.ieHack": "ignore",
"less.lint.unknownVendorSpecificProperties": "ignore",
"less.lint.propertyIgnoredDueToDisplay": "warning",
"less.lint.important": "ignore",
"less.lint.float": "ignore",
"less.lint.idSelector": "ignore",
"html.format.wrapLineLength": 120,
"html.format.unformatted": "a, abbr, acronym, b, bdo, big, br, button, cite, code, dfn, em, i, img, input, kbd, label, map, object, q, samp, script, select, small, span, strong, sub, sup, textarea, tt, var",
"html.format.indentInnerHtml": false,
"html.format.preserveNewLines": true,
"html.format.maxPreserveNewLines": null,
"html.format.indentHandlebars": false,
"html.format.endWithNewline": false,
"html.format.extraLiners": "head, body, /html",
"json.schemas": [],
"markdown.styles": [],
"javascript.validate.enable": true,
"javascript.format.insertSpaceAfterCommaDelimiter": true,
"javascript.format.insertSpaceAfterSemicolonInForStatements": true,
"javascript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
"javascript.format.placeOpenBraceOnNewLineForFunctions": false,
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": false,
"terminal.external.windowsExec": "cmd",
"terminal.external.osxExec": "iTerm.app",
"terminal.external.linuxExec": "xterm",
"terminal.integrated.shell.linux": "/bin/zsh",
"terminal.integrated.shellArgs.linux": [],
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.shellArgs.osx": ["-l"],
"terminal.integrated.shell.windows": "cmd.exe",
"terminal.integrated.fontFamily": "Fira Mono for Powerline",
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 0,
"problems.autoReveal": true,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": true,
"workbench.sideBar.location": "left",
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"editor.renderLineHighlight": "gutter",
"vsicons.projectDetection.autoReload": false,
"vsicons.projectDetection.disableDetect": true,
"zenMode.fullScreen": false,
"zenMode.hideTabs": false,
"workbench.colorTheme": "Monokai Pro",
"workbench.iconTheme": "vscode-icons",
"editor.wordWrap": "bounded",
"git.confirmSync": false,
"editor.minimap.enabled": false,
"terminal.integrated.cursorBlinking": true,
"editor.autoIndent": true,
"eslint.options": {
"extensions": [".html", ".js", ".vue", ".jsx"]
},
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "html",
"autoFix": true
},
{
"language": "vue",
"autoFix": true
}
],
"editor.smoothScrolling": true,
"editor.cursorStyle": "line",
"editor.cursorBlinking": "phase",
"editor.renderWhitespace": "all",
"terminal.integrated.cursorStyle": "block",
"editor.snippetSuggestions": "top",
"workbench.fontAliasing": "antialiased",
"editor.wordWrapColumn": 100,
"vsicons.dontShowNewVersionMessage": true,
"stylelint.enable": true,
"emmet.showSuggestionsAsSnippets": true,
"search.location": "panel",
"highlight-matching-tag.leftStyle": {
"borderWidth": "0"
},
"highlight-matching-tag.rightStyle": {
"borderWidth": "0"
},
"highlight-matching-tag.style": {
"borderWidth": "0 0 1px 0",
"borderColor": "#fc9867",
"borderStyle": "solid",
},
"workbench.colorCustomizations": {
"[Monokai Pro]": {
"statusBar.background": "#2c2a2e",
"statusBar.border": "#2c2a2e",
"sideBar.background": "#2c2a2e",
"sideBar.border": "#2c2a2e",
"activityBar.background": "#2c2a2e",
"activityBar.border": "#2c2a2e",
"list.activeSelectionBackground": "#403e41",
"list.inactiveSelectionBackground": "#727072",
"panel.background": "#2c2a2e",
"sideBarSectionHeader.background": "#2c2a2e"
},
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment