Skip to content

Instantly share code, notes, and snippets.

@MarcosSantosDev
Last active May 17, 2023 15:10
Show Gist options
  • Save MarcosSantosDev/2934c8c17627d3b3475771696c21a42f to your computer and use it in GitHub Desktop.
Save MarcosSantosDev/2934c8c17627d3b3475771696c21a42f to your computer and use it in GitHub Desktop.
visual code settings.json
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Hack The Box-Lite",
"launch": {
"configurations": [],
"compounds": []
},
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.lineHeight": 20,
"editor.fontLigatures": true,
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
"editor.rulers": [80, 120],
// Aplica um sinal visual na esquerda da linha selecionada
"editor.renderLineHighlight": "gutter",
"editor.cursorSmoothCaretAnimation": "on",
// Aumenta a fonte do terminal
"terminal.integrated.fontSize": 14,
// Upper size limit, in KB, that will count a package as a small package
"importCost.smallPackageSize": 50,
// Upper size limit, in KB, that will count a package as a medium package
"importCost.mediumPackageSize": 100,
// Decoration color for small packages
"importCost.smallPackageColor": "#7cc36e",
// Decoration color for medium packages
"importCost.mediumPackageColor": "#7cc36e",
// Decoration color for large packages
"importCost.largePackageColor": "#d44e40",
// File extensions to be parsed by the Typescript parser
"importCost.typescriptExtensions": ["\\.ts?$", "\\.tsx?$"],
// File extensions to be parsed by the Javascript parser
"importCost.javascriptExtensions": ["\\.js?$", "\\.jsx?$"],
// Which bundle size to display
"importCost.bundleSizeDecoration": "both",
// Display the 'calculating' decoration
"importCost.showCalculatingDecoration": true,
// Print debug messages in output channel
"importCost.debug": false,
"git.autofetch": true,
"explorer.compactFolders": false,
"diffEditor.ignoreTrimWhitespace": false,
"git.confirmSync": false,
"explorer.confirmDragAndDrop": false,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.detectIndentation": true
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.detectIndentation": true
},
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"git.ignoreRebaseWarning": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"explorer.confirmDelete": false,
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.editor.untitled.hint": "hidden",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"liveServer.settings.donotShowInfoMsg": true,
"json.schemas": [],
"workbench.productIconTheme": "IntelliJ"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment