Skip to content

Instantly share code, notes, and snippets.

@bybruno
Last active October 25, 2022 17:12
Show Gist options
  • Save bybruno/d346614082396dee8dd4484cf1b28f50 to your computer and use it in GitHub Desktop.
Save bybruno/d346614082396dee8dd4484cf1b28f50 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"editor.showFoldingControls": "always",
"editor.foldingStrategy": "indentation",
"terminal.integrated.fontSize": 16,
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"editor.tabSize": 2,
"editor.rulers": [80, 120],
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"editor.fontSize": 17,
"editor.lineHeight": 38,
"editor.letterSpacing": 0.5,
"files.trimTrailingWhitespace": true,
"editor.fontWeight": "400",
"editor.cursorStyle": "line",
"editor.cursorWidth": 1,
"editor.cursorBlinking": "smooth",
"editor.renderWhitespace": "selection",
"workbench.editor.labelFormat": "short",
"breadcrumbs.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.minimap.maxColumn": 100,
"editor.minimap.showSlider": "always",
"editor.smoothScrolling": true,
"editor.cursorSmoothCaretAnimation": true,
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"editor.parameterHints.enabled": false,
"editor.semanticHighlighting.enabled": true,
"workbench.iconTheme": "moxer-icons",
"debug.openDebug": "openOnDebugBreak",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [80],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false,
"editor.defaultFormatter": "Dart-Code.dart-code"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"diffEditor.ignoreTrimWhitespace": false,
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.macOptionClickForcesSelection": true,
"files.insertFinalNewline": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/coverage": true,
"**/dist": true,
"**/build": true,
"**/.build": true,
"**/.gh-pages": true
},
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"[mdx]": {
"files.trimTrailingWhitespace": false
},
"telemetry.enableCrashReporter": false,
"editor.inlineSuggest.enabled": true,
"dart.previewFlutterUiGuides": true,
"dart.previewFlutterUiGuidesCustomTracking": true,
"workbench.productIconTheme": "icons-carbon",
"files.autoSave": "afterDelay",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"editor.accessibilitySupport": "off",
"sonarlint.rules": {
"javascript:S1488": {
"level": "off"
}
},
"editor.folding": true,
"editor.hideCursorInOverviewRuler": true,
"editor.minimap.enabled": false,
"editor.occurrencesHighlight": false,
"editor.roundedSelection": true,
"editor.selectionHighlight": true,
"editor.scrollBeyondLastLine": false,
"explorer.decorations.colors": false,
"workbench.activityBar.visible": true,
"terminal.integrated.gpuAcceleration": "on",
"bracket-pair-colorizer-2.depreciation-notice": false,
"bracketPairColorizer.depreciation-notice": false,
"cSpell.language": "pt,pt-PT,en-US",
"terminal.integrated.defaultProfile.osx": "zsh",
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": true,
"markdown": false,
"typescript": false,
"javascript": true
},
"githubPullRequests.fileListLayout": "tree",
"gitlens.hovers.currentLine.over": "line",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"workbench.editor.highlightModifiedTabs": true,
"typescript.inlayHints.parameterNames.enabled": "all",
"files.associations": {
"*.html.erb": "erb"
},
"editor.guides.indentation": true,
"editor.foldingImportsByDefault": true,
"window.commandCenter": true,
"terminal.integrated.shellIntegration.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment