Skip to content

Instantly share code, notes, and snippets.

@huri3l
Created December 11, 2021 16:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huri3l/5e6fa5574ee62d0ce2ed97d4ae6d9c8a to your computer and use it in GitHub Desktop.
Save huri3l/5e6fa5574ee62d0ce2ed97d4ae6d9c8a to your computer and use it in GitHub Desktop.
Meu JSON de configurações do VSCode
{
"http.proxyAuthorization": null,
// * VSCode general UI settings
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"editor.fontFamily": "Fira Code",
"editor.fontSize": 16,
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.rulers": [90],
"[python]": {
"editor.tabSize": 4,
"gitlens.codeLens.symbolScopes": [
"!Module"
]
},
"explorer.compactFolders": false,
"editor.minimap.enabled": false,
"files.exclude": {
"node_modules": true
},
// * VSCode general configurations
"sync.gist": "e7c884f36957ed26423bca9b0db6af22",
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"files.autoSave": "off",
"eslint.packageManager": "yarn",
"eslint.codeAction.showDocumentation": {
"enable": true
},
"prettier.printWidth": 100,
"prettier.semi": true,
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"[javascriptreact]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// * Emmet configurations
"emmet.syntaxProfiles": {"javascript": "jsx"},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.triggerExpansionOnTab": true,
// * Color preview in multiple languages
"colorize.languages": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"json",
"html",
"css"
],
// * Highlight in comments
"better-comments.tags": [
{
"tag": "!",
"color": "#FF6961",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#AEC6CF",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "[]",
"color": "#FEFE95",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "[x]",
"color": "#FEFE95",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#B19CD9",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
// * Terminal configuration
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"terminal.integrated.shellArgs.windows": [
"-ExecutionPolicy",
"Bypass",
"-NoLogo"
],
"window.titleBarStyle": "native",
"window.menuBarVisibility": "toggle",
// * Extra configuration
"c-cpp-compile-run.c-compiler": "mingw",
"c-cpp-compile-run.cpp-compiler": "mingw",
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"window.zoomLevel": 1,
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment