Skip to content

Instantly share code, notes, and snippets.

@Felipe-Marques
Last active November 3, 2021 13:17
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Felipe-Marques/446a5a3cf205e57f75e0b37e4cc077f1 to your computer and use it in GitHub Desktop.
Save Felipe-Marques/446a5a3cf205e57f75e0b37e4cc077f1 to your computer and use it in GitHub Desktop.
Arquivo adicional na configuração do Vs Code usado pelo bootcamp do IGTI
{
"extensions.ignoreRecommendations": true,
"workbench.startupEditor": "newUntitledFile",
"debug.console.fontFamily": "Fira Code Retina",
"editor.fontFamily": " 'Fira Code Retina' , Consolas, 'Courier New', monospace",
"window.zoomLevel": 0,
"editor.fontLigatures": false, //Evita que arrow functions vire setas comuns.
"editor.fontSize": 11,
"editor.lineHeight": 15,
"editor.formatOnSave": true,
"update.mode": "none",
"editor.renderWhitespace": "all",
"editor.rulers": [80, 120],
"editor.tabSize": 2,
"terminal.integrated.fontSize": 11,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"breadcrumbs.enabled": false,
"editor.parameterHints.enabled": true,
"vsicons.dontShowNewVersionMessage": true,
"prettier.singleQuote": true,
"files.autoSave": "onFocusChange", //salva automaticamento quando saimos do documento.
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.minimap.enabled": false,
"workbench.activityBar.visible": true,
"workbench.statusBar.visible": true,
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.host": "localhost",
"liveServer.settings.port": 3500,
"liveServer.settings.wait": 5,
"liveServer.settings.donotVerifyTags": true,
"git.confirmSync": false,
"explorer.confirmDelete": false,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"workbench.iconTheme": "vscode-icons",
"explorer.compactFolders": false //evita pastas compactadas.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment