Last active
August 12, 2020 03:56
-
-
Save kaellego/9cf28dad7a977aa713ca408d7cc4105f to your computer and use it in GitHub Desktop.
Untitled
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-08-12T03:56:30.010Z","extensionVersion":"v3.4.3"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"metadata": { | |
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
"publisherId": "Shan.code-settings-sync", | |
"publisherDisplayName": "Shan" | |
}, | |
"name": "code-settings-sync", | |
"publisher": "Shan", | |
"version": "3.4.3" | |
}, | |
{ | |
"metadata": { | |
"id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5", | |
"publisherId": "ms-python.python", | |
"publisherDisplayName": "ms-python" | |
}, | |
"name": "python", | |
"publisher": "ms-python", | |
"version": "2020.7.96456" | |
} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Coloque suas chave ligações neste arquivo para substituir os padrões | |
[ | |
{"key": "shift+alt+w", "command": "phpformatter.fix", "when": "editorFocus"} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Define o tema do VSCode | |
"workbench.colorTheme": "Dracula", | |
// Configura tamanho e família da fonte | |
"editor.fontSize": 18, | |
"editor.lineHeight": 24, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.formatOnSave": true, | |
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes | |
"editor.rulers": [80, 120], | |
"editor.tabSize": 2, | |
// Aplica um sinal visual na esquerda da linha selecionada | |
"editor.renderLineHighlight": "gutter", | |
// Aumenta a fonte do terminal | |
"terminal.integrated.fontSize": 14, | |
// Define o tema dos ícones na sidebar | |
"workbench.iconTheme": "material-icon-theme", | |
"window.zoomLevel": 0, | |
"explorer.confirmDelete": false, | |
"editor.renderWhitespace": "all", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"maven.executable.path": "C:\\Program Files (x86)\\mavem\\bin\\mvn", | |
"terminal.integrated.rendererType": "dom", | |
"python": "python", | |
"perl": "perl", | |
"ruby": "C:\\Ruby23-x64\\bin\\ruby.exe", | |
"go": "go run", | |
"html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"", | |
//"java": "cd $dir && javac $fileName && java $fileNameWithoutExt", | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"C_Cpp.updateChannel": "Insiders", | |
"phpformatter.composer": true, | |
"php.executablePath": "php", | |
"[php]": { | |
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client" | |
}, | |
"java.home": "C:\\Program Files\\Java\\jdk-11.0.2", | |
"git.autofetch": true, | |
"sync.gist": "9cf28dad7a977aa713ca408d7cc4105f", | |
"sync.autoUpload": true, | |
"editor.renderIndentGuides": false, | |
"symfony-vscode.phpExecutablePath": "php", | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"breadcrumbs.enabled": true, | |
"editor.parameterHints.enabled": false, | |
"editor.tokenColorCustomizations": null, | |
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe", | |
"terminal.integrated.shellArgs.windows": [ | |
"/k", | |
"'%ProgramFiles(x86)%'\\Microsoft Visual Studio\\2019\\Enterprise\\Common7\\Tools\\VsDevCmd.bat" | |
], | |
"terminal.integrated.automationShell.windows": null, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.cursorStyle": "line", | |
"sqltools.connections": [], | |
"python.languageServer": "Microsoft", | |
"sync.forceDownload": true | |
//"java.home": "C:\\Program Files\\Java\\jdk1.8.0_211" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment