Skip to content

Instantly share code, notes, and snippets.

@cezarmezzalira
Last active February 28, 2023 02:50
Show Gist options
  • Save cezarmezzalira/caa9f0e203e252f35e1b36a0aaeba4a2 to your computer and use it in GitHub Desktop.
Save cezarmezzalira/caa9f0e203e252f35e1b36a0aaeba4a2 to your computer and use it in GitHub Desktop.
Visual Studio Code - Settings
{
// "workbench.colorTheme": "Monokai Dark Soda",
"workbench.startupEditor": "none",
"workbench.editor.enablePreview": false,
"workbench.editor.labelFormat": "short",
"workbench.editor.revealIfOpen": true,
"telemetry.telemetryLevel": "off",
"security.workspace.trust.enabled": false,
"editor.hover.above": false,
"editor.guides.bracketPairs": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.highlightActiveIndentation": true,
"editor.guides.bracketPairsHorizontal": "active",
"editor.folding": true,
"editor.tabSize": 4,
"editor.fontSize": 18,
"editor.lineHeight": 24,
"editor.fontFamily": "'JetBrainsMono NFM','Ubuntu Mono Regular', 'Droid Sans Mono', 'monospace', 'Droid Sans Fallback'",
"editor.fontWeight": "500",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.wordWrap": "wordWrapColumn",
"editor.wrappingIndent": "same",
"editor.wordWrapColumn": 120,
"explorer.compactFolders": false,
"editor.renderLineHighlight": "line",
"extensions.ignoreRecommendations": true,
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"editor.rulers": [
80,
120
],
"editor.renderControlCharacters": true,
"editor.suggestSelection": "first",
"editor.suggest.showMethods": true,
"editor.suggest.preview": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.snippetSuggestions": "top",
"editor.mouseWheelZoom": true,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"window.titleBarStyle": "custom",
"terminal.integrated.cursorBlinking": true,
// Aumenta o tamanho da fonte do terminal
"terminal.integrated.fontSize": 22,
"window.commandCenter": true,
"java.inlayHints.parameterNames.enabled": "none"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment