Skip to content

Instantly share code, notes, and snippets.

@anthonybrown
Last active June 10, 2019 00:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anthonybrown/feea4c3c825917a47d0fcf10dc7cff98 to your computer and use it in GitHub Desktop.
Save anthonybrown/feea4c3c825917a47d0fcf10dc7cff98 to your computer and use it in GitHub Desktop.
My current vscode settings as of May 2019
{
// Place your settings in this file to overwrite the default settings
"window.zoomLevel": 1,
"editor.formatOnSave": true,
"editor.detectIndentation": true,
"editor.fontSize": 18,
// "editor.lightbulb.enabled": false,
"editor.parameterHints.enabled": false,
"editor.fontFamily": "Operator Mono",
"editor.fontLigatures": true,
"editor.rulers": [80],
"editor.snippetSuggestions": "top",
"editor.wordBasedSuggestions": false,
"editor.suggest.localityBonus": true,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.acceptSuggestionOnEnter": "off",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggestSelection": "recentlyUsed",
"editor.suggest.filteredTypes": {
"keyword": false,
},
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggestSelection": "recentlyUsed",
"editor.suggest.filteredTypes": {
"keyword": false,
},
},
"editor.tabSize": 2,
"editor.renderWhitespace": "all",
"editor.glyphMargin": false,
"editor.folding": true,
"files.exclude": {
"USE_GITIGNORE": true
},
"javascript.suggest.autoImports": false,
"javascript.validate.enable": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/coverage": true,
"**/dist": true,
"**/build": true,
"**/.build": true,
"**/.gh-pages": true
},
"eslint.autoFixOnSave": false,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"eslint.options": {
"env": {
"browser": true,
"jest/globals": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"no-debugger": "off"
}
},
"terminal.integrated.shellArgs.osx": ["-l"],
"terminal.integrated.scrollback": 10000,
"terminal.integrated.fontSize": 16,
"files.associations": {
"*.md": "mdx"
},
"editor.lineNumbers": "on",
"workbench.colorTheme": "Dark+ Operator Mono",
"breadcrumbs.enabled": true,
"prettier.eslintIntegration": false,
"prettier.bracketSpacing": false,
"prettier.printWidth": 80,
"prettier.tabWidth": 2,
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"prettier.jsxBracketSameLine": false,
"prettier.semi": false,
"prettier.useTabs": false,
"prettier.proseWrap": "always",
"prettier.requireConfig": true,
"local-history.absolute": true,
"local-history.path": "/Users/tony/.vscode-history",
"grunt.autoDetect": "off",
"npm.runSilent": true,
"gulp.autoDetect": "off",
"workbench.iconTheme": "material-icon-theme",
"explorer.confirmDragAndDrop": false,
"workbench.sideBar.location": "left",
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"workbench.startupEditor": "none",
"editor.minimap.enabled": false,
"spellright.language": ["en"],
"spellright.documentTypes": ["markdown", "plaintext", "mdx"],
"spellright.parserByClass": {"mdx": {"parser": "markdown"}},
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"editor.cursorSmoothCaretAnimation": true,
"editor.smoothScrolling": true,
"php.suggest.basic": false,
"typescript.suggest.autoImports": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"telemetry.enableTelemetry": false,
"workbench.view.alwaysShowHeaderActions": true,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.swipeToNavigate": true,
"workbench.settings.openDefaultKeybindings": true,
"workbench.settings.openDefaultSettings": true,
"explorer.confirmDelete": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment