Skip to content

Instantly share code, notes, and snippets.

@josefaidt
Last active January 18, 2019 17:12
Show Gist options
  • Save josefaidt/69bc7d7a38dad1aea8207b377717d784 to your computer and use it in GitHub Desktop.
Save josefaidt/69bc7d7a38dad1aea8207b377717d784 to your computer and use it in GitHub Desktop.
VSCode User Settings for my everyday use
{
"workbench.colorTheme": "Rouge", // of course
"workbench.iconTheme": "file-icons-colourless", // reduce flair in sidebar with B&W icons
"workbench.activityBar.visible": false, // takes up too much space, use keyboard shortcuts
"editor.minimap.enabled": false, // overrated
"editor.tabSize": 2,
"markdownlint.config": {
"MD013": false,
"no-inline-html": false // for those inline images and anchor tags
},
"workbench.sideBar.location": "left",
"workbench.panel.defaultLocation": "right", // more vertical screen space
"terminal.integrated.shell.osx": "/usr/local/bin/fish", // fishshell.com
"editor.fontFamily": "Operator Mono, Monaco, 'Courier New', monospace",
"eslint.alwaysShowStatus": true, // shows eslint in status bar
"eslint.options": {
"configFile": "/Users/josef/.config/.eslintrc.js"
},
"editor.formatOnSave": false, // disable to let ESLint take over
"eslint.autoFixOnSave": true, // autofix using ESLint
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "html",
"autoFix": true
}
],
"eslint.packageManager": "yarn", // habit
// "editor.rulers": [80, 100, 120]
"emmet.includeLanguages": {
"javascript": "javascriptreact" // enables emmet for React
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.triggerExpansionOnTab": true, // expand imported React components
"emmet.showSuggestionsAsSnippets": true, // to get html tag completions before extension snippets
"editor.snippetSuggestions": "top", // show snippets before any other auto completion
"editor.acceptSuggestionOnEnter": "off"
}
@josefaidt
Copy link
Author

I left comments in because VSCode ignores them anyway

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