Skip to content

Instantly share code, notes, and snippets.

@wesbos
Created February 5, 2018 19:41
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save wesbos/5144fb4a7d52a98442968f4181a00d9b to your computer and use it in GitHub Desktop.
Save wesbos/5144fb4a7d52a98442968f4181a00d9b to your computer and use it in GitHub Desktop.
{
"window.zoomLevel": -1,
"editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 29,
"editor.lineHeight": 40,
"editor.letterSpacing": 0.5,
"workbench.editor.tabSizing": "shrink",
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"html.format.enable": true,
"html.format.preserveNewLines": true,
"editor.formatOnSave": true,
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
// this isn't really underline but we hack it to be a thicker cursor
"editor.cursorStyle": "line",
"prettier.eslintIntegration": true,
"editor.wordWrap": "on",
"editor.multiCursorModifier": "ctrlCmd",
"editor.fontWeight": "400",
"editor.cursorBlinking": "solid",
"editor.colorDecorators": false,
"editor.minimap.enabled": false,
"vscode_custom_css.imports": [
"/Volumes/Macintosh HD/Users/wesbos/.vscodestyles.css"
],
"workbench.activityBar.visible": true,
"workbench.sideBar.location": "left",
"gitlens.blame.line.enabled": false,
"editor.renderWhitespace": "none",
"editor.rulers": [
80,
100,
120
],
"editor.minimap.showSlider": "always",
"workbench.startupEditor": "newUntitledFile",
"extensions.ignoreRecommendations": false,
"cSpell.userWords": [
"Ching",
"Hackathon",
"Italicsify",
"Preformat",
"Unmount",
"dropdown",
"inmemory",
"prefetch",
"refetch",
"scrollbar",
"setext",
"slugify"
],
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.next": true
},
"workbench.colorTheme": "Cobalt2",
"workbench.editor.tabCloseButton": "off",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
// show snippets before any other auto completion
"editor.snippetSuggestions": "top",
// this lets you quick open multiple items in a row and now have the previous ones closed on you
"workbench.editor.enablePreviewFromQuickOpen": false,
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"sublimeTextKeymap.promptV3Features": true,
"javascript.format.enable": false
}
@vemarav
Copy link

vemarav commented Nov 1, 2018

Thanks 👍

@JanineAmelie
Copy link

Thank you! fixed my eslint and prettier conflicting each other! <3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment