Last active
January 18, 2019 17:12
-
-
Save josefaidt/69bc7d7a38dad1aea8207b377717d784 to your computer and use it in GitHub Desktop.
VSCode User Settings for my everyday use
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I left comments in because VSCode ignores them anyway