Skip to content

Instantly share code, notes, and snippets.

@rafael-neri
Created January 23, 2024 00:11
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 rafael-neri/aa839856e0eb677a9f55adf5909cc00f to your computer and use it in GitHub Desktop.
Save rafael-neri/aa839856e0eb677a9f55adf5909cc00f to your computer and use it in GitHub Desktop.
{
// Desabilita a Telemetria
"telemetry.enableTelemetry": false,
"redhat.telemetry.enabled": false,
// Configurações dos arquivos
"files.autoSave": "onFocusChange",
"files.encoding": "utf8",
"files.insertFinalNewline": true,
"files.restoreUndoStack": true,
"files.saveConflictResolution": "askUser",
"files.enableTrash": true,
"files.eol": "\n",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": false,
"files.watcherExclude": {
"**/node_modules/**": true,
"**/vendor/**": true,
"**/venv/**": true,
"**/wenv/**": true
},
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"workbench.iconTheme": "vscode-jetbrains-icon-theme-2023-dark",
"workbench.sideBar.location": "left",
"workbench.activityBar.iconClickBehavior": "toggle",
// Configurações da área de navegação dos arquivos
"explorer.compactFolders": false,
"explorer.openEditors.visible": 0,
"explorer.autoReveal": false,
"explorer.decorations.badges": true,
"explorer.confirmDelete": true,
"explorer.confirmDragAndDrop": true,
"explorer.decorations.colors": true,
"explorer.enableDragAndDrop": true,
"explorer.incrementalNaming": "smart",
"explorer.sortOrder": "default",
// Configurações do Editor
"editor.suggestSelection": "recentlyUsedByPrefix",
"editor.comments.insertSpace": true,
"editor.autoClosingBrackets": "languageDefined",
"editor.fontFamily": "'Jetbrains Mono', 'Fira Code', 'Consolas', 'Courier New', 'monospace'",
"editor.fontLigatures": true,
"editor.folding": true,
"editor.showFoldingControls": "always",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.linkedEditing": true,
"editor.minimap.enabled": false,
// Configurações de Debug
"debug.allowBreakpointsEverywhere": true,
"debug.console.closeOnEnd": false,
"debug.inlineValues": false,
"debug.toolBarLocation": "docked",
"debug.console.wordWrap": true,
"debug.showInStatusBar": "always",
"debug.openDebug": "openOnDebugBreak",
// Configuração da extensão Hungry Delete
"hungryDelete.enableSmartBackspace": true,
"hungryDelete.considerIncreaseIndentPattern": false,
"hungryDelete.followAbovelineIndent": false,
"hungryDelete.keepOneSpace": false,
// Intellicode
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
// Terminal
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.defaultProfile.windows": "C:\\windows\\System32\\wsl.exe",
"editor.renderWhitespace": "all",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"laravel-pint.enable": true,
"diffEditor.ignoreTrimWhitespace": false,
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": false,
"scminput": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment