Skip to content

Instantly share code, notes, and snippets.

@anthonybrown
Last active May 29, 2019 09:30
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/ef1715123973134c918b4002082b0af4 to your computer and use it in GitHub Desktop.
Save anthonybrown/ef1715123973134c918b4002082b0af4 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"window.zoomLevel": 1,
"editor.formatOnSave": true,
"editor.detectIndentation": true,
"editor.fontSize": 20,
"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": "Night Owl",
"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,
}
// my old settings that caused some weird behaviors.
// {
// "window.zoomLevel": 2,
// // "workbench.startupEditor": "none",
// "editor.minimap.enabled": false,
// "explorer.confirmDragAndDrop": false,
// "eslint.autoFixOnSave": false,
// // "stylelint.enable": true,
// // "css.validate": false,
// // "scss.validate": false,
// // "files.associations": {
// // "*.css": "postcss"
// // },
// "gitlens.keymap": "none",
// "editor.tabSize": 2,
// "editor.quickSuggestions": {
// "other": false,
// "comments": false,
// "strings": false
// },
// "prettier.singleQuote": true,
// "workbench.colorTheme": "Night Owl",
// // Controls the font family.
// "editor.fontFamily": "Operator Mono",
// // Controls the font size.
// "editor.fontSize": 14,
// // Controls the line height. Use 0 to compute the lineHeight from the fontSize.
// "editor.lineHeight": 0,
// // Enables font ligatures.
// "editor.fontLigatures": true,
// // Controls if file decorations should use badges.
// "explorer.decorations.badges": false,
// // Sets the terminal font size.
// "terminal.integrated.fontSize": 16,
// // Apparently line-height works differently in the terminal.
// "terminal.integrated.lineHeight": 1.45,
// // "materialTheme.cache.workbench.settings": {
// // "themeColours": "Default"
// // },
// // "workbench.colorCustomizations": {},
// // "workbench.statusBar.visible": false,
// "gitlens.advanced.messages": {
// "suppressCommitHasNoPreviousCommitWarning": false,
// "suppressCommitNotFoundWarning": false,
// "suppressFileNotUnderSourceControlWarning": false,
// "suppressGitVersionWarning": false,
// "suppressLineUncommittedWarning": false,
// "suppressNoRepositoryWarning": false,
// "suppressResultsExplorerNotice": false,
// "suppressShowKeyBindingsNotice": true
// },
// // "gitlens.historyExplorer.enabled": true,
// "workbench.sideBar.location": "left",
// "editor.hover.enabled": false,
// // "editor.parameterHints": false,
// "editor.snippetSuggestions": "none",
// "editor.tabCompletion": "on",
// "gitlens.views.fileHistory.enabled": true,
// "gitlens.views.lineHistory.enabled": true,
// "editor.wordWrapColumn": 80,
// // "[javascript]": {
// // "editor.defaultFormatter": "esbenp.prettier-vscode"
// // },
// "prettier.bracketSpacing": false,
// "prettier.printWidth": 100,
// "prettier.trailingComma": "all",
// "liveServer.settings.donotShowInfoMsg": true,
// "explorer.confirmDelete": false,
// "emmet.showSuggestionsAsSnippets": false,
// "emmet.showExpandedAbbreviation": "inMarkupAndStylesheetFilesOnly",
// "workbench.iconTheme": "vscode-icons",
// "workbench.startupEditor": "newUntitledFile",
// }
// My first vscode settings
{
"window.zoomLevel": 0,
"editor.tabSize": 2,
"editor.renderWhitespace": "all",
"editor.minimap.enabled": false,
"editor.fontFamily": "Operator Mono,'Fira Code'", // Operator Mono,
"editor.fontLigatures": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.fontSize": 18,
"editor.formatOnSave": false,
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"search.exclude": {
"**/node_modules/**": true,
"**/bower_components/**": true,
"**/*.map": true,
"**/*.orig": true,
"**/*.reg": true,
"**/*.min.{js,css}": true
},
"diffEditor.renderSideBySide": true,
"files.exclude": {
"**/.git": true,
"**/.gitignore": true,
"**/.travis.yml": true,
"**/*.txt": true,
"**/*.pdf": true,
"**/.svn": true,
"**/.hg": true,
"**/.hgignore": true,
"**/.hgtags": true,
"**/CVS": true,
"**/*.orig": true,
"**/.atomignore": true,
"**/.vscode": true,
"**/.eslintrc.json": true,
"**/node_modules/**": true,
"**/bower_components": true
},
"editor.lineHeight": 24,
"workbench.editor.swipeToNavigate": true,
"workbench.fontAliasing": "antialiased",
"telemetry.enableTelemetry": false,
"gitlens.currentLine.enabled": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"workbench.colorTheme": "Oceanic Next Italic",
"eslint.packageManager": "yarn",
"eslint.autoFixOnSave": true,
"eslint.options": {
"files.exclude": {
"**/.git": true,
"**/dist": true,
"**/build": true,
"**/.DS_Store": true,
"**/*.{css,less,sass,scss}": true,
"node_modules/**": true,
"**/*.map": true,
"**/*.orig": true,
}
},
"prettier.trailingComma": "all",
"prettier.singleQuote": true,
"prettier.semi": false,
"prettier.arrowParens": "always",
"workbench.colorCustomizations": {
"tab.activeBorder": "#00E5E5",
"list.inactiveSelectionForeground": "#00E5E5",
"list.activeSelectionBackground": "#00a6a9"
},
"vscode_custom_css.imports": [
"file:///Users/tonybrown/.vscode/extensions/style.css"
],
"extensions.ignoreRecommendations": true,
"extensions.autoUpdate": false,
"javascript.referencesCodeLens.enabled": false,
//"terminal.integrated.cursorStyle": "line",
"importCost.bundleSizeDecoration": "both",
"importCost.smallPackageColor": "rgba(159, 192, 160, 0.80)",
"importCost.mediumPackageColor": "rgba(197, 198, 171, 0.80)",
"importCost.largePackageColor": "rgba(232, 107, 94, 0.80)",
"importCost.showCalculatingDecoration": true,
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/node_modules/babel-cli/bin/babel-node.js",
"stopOnEntry": false,
"args": [
"${file}"
]
}
]
},
"terminal.integrated.fontSize": 14,
"workbench.startupEditor": "newUntitledFile",
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"gitlens.historyExplorer.enabled": true,
"liveServer.settings.donotShowInfoMsg": true,
"workbench.iconTheme": "vscode-icons",
"editor.renderIndentGuides": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment