Skip to content

Instantly share code, notes, and snippets.

@davegomez
Created March 18, 2020 17:03
Show Gist options
  • Save davegomez/dad8052696bc0771fc8ea0c05da8dd62 to your computer and use it in GitHub Desktop.
Save davegomez/dad8052696bc0771fc8ea0c05da8dd62 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"css.validate": false,
"editor.fontLigatures": true,
"editor.fontFamily": "'Operator Mono Lig'",
"editor.fontSize": 14,
"editor.formatOnType": false,
"editor.minimap.enabled": false,
"editor.renderIndentGuides": false,
"editor.renderWhitespace": "boundary",
"editor.rulers": [
80,
100,
120
],
"editor.snippetSuggestions": "top",
"editor.tabCompletion": "on",
"emmet.includeLanguages": {
"html": "html",
"erb": "erb",
"javascript": "javascript",
"vue": "html",
"ejs": "html"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"files.associations": {
"*.thtml": "php",
"*.mdx": "mdx",
".stylelintrc": "json"
},
"files.insertFinalNewline": false,
"files.defaultLanguage": "markdown",
"files.trimTrailingWhitespace": false,
"gitlens.keymap": "chorded",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"javascript.validate.enable": false,
"material-icon-theme.showUpdateMessage": false,
"scss.validate": false,
"telemetry.enableTelemetry": false,
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.drawBoldTextInBrightColors": false,
"terminal.integrated.fontFamily": "Hack Nerd Font",
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 0,
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"markdown.extension.toc.githubCompatibility": true,
"markdown.extension.toc.unorderedList.marker": "+",
"markdown.extension.tableFormatter.normalizeIndentation": true,
"search.exclude": {
"**/cjs": true,
"**/esm": true,
"**/umd": true
},
"editor.multiCursorModifier": "ctrlCmd",
"rust.all_features": true,
"rust.build_on_save": true,
"editor.formatOnPaste": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"liveshare.featureSet": "insiders",
"editor.formatOnSave": false,
"workbench.colorTheme": "Hop Light",
"cSpell.userWords": [
"Formik",
"Kubernetes",
"Tagbox",
"aweber",
"britecharts",
"camelize",
"crossorigin",
"davidg",
"fuzzysearch",
"gitlab",
"hyperscript",
"nbsp",
"nextjs",
"noopener",
"noreferrer",
"pascalize",
"sourcemap",
"subscriberimportapi",
"taggle",
"toastr",
"unfetch",
"wobbegong",
"xmlbuilder"
],
"breadcrumbs.enabled": false,
"python.jediEnabled": false,
"editor.cursorSurroundingLines": 4,
"explorer.openEditors.visible": 0,
"workbench.sideBar.location": "right",
"workbench.settings.editor": "json",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.cursorBlinking": "expand",
"git.autofetch": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment