This file contains hidden or 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
| #!/bin/bash | |
| # ============================================================================= | |
| # Script de pós-instalação para Ubuntu/Debian | |
| # Deve ser executado como usuário normal (com sudo para ações privilegiadas) | |
| # | |
| # Uso: | |
| # bash ./linux-setup.sh | |
| # | |
| # O que será instalado: |
This file contains hidden or 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
| [user] | |
| name = John Doe | |
| email = john@email.com | |
| [push] | |
| followTags = true | |
| [core] | |
| editor = code --wait # trae --wait, cursor --wait or code --wait | |
| [alias] | |
| a = !git add --all | |
| c = !git commit -m |
This file contains hidden or 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
| { | |
| "editor.inlayHints.enabled": true, | |
| "typescript.inlayHints.parameterTypes.enabled": true, | |
| "typescript.inlayHints.parameterNames.enabled": "all", | |
| "workbench.colorTheme": "GitHub Dark", | |
| "workbench.startupEditor": "none", | |
| "workbench.iconTheme": "vscode-icons", | |
| "workbench.productIconTheme": "fluent-icons", | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, |