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
| [alias] | |
| s = push | |
| l = pull | |
| ls = !(git stash && git pull && git stash pop) | |
| dev = !(git checkout dev && git pull) | |
| ck = checkout | |
| reset = reset --soft HEAD~1 |
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
| // React | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.codeActionsOnSave": { | |
| "source.organizeImports": false, | |
| "source.fixAll.eslint": true | |
| }, | |
| "editor.formatOnSave": true | |
| }, | |
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
| module.exports = { | |
| semi: false, | |
| singleQuote: true, | |
| arrowParens: 'avoid', | |
| trailingComma: 'none', | |
| endOfLine: 'auto' | |
| } |
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
| # Isntall NODEJS | |
| https://github.com/nodesource/distributions/blob/master/README.md | |
| # Copy aplication GITHUB | |
| # Install DOCKER | |
| sudo apt-get remove docker docker-engine docker.io containerd runc | |
| sudo apt-get update | |
| sudo apt-get install \ | |
| apt-transport-https \ |
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
| # Config in preferences: | |
| Font: Fira Code Retina | |
| Size: 14 | |
| https://blog.rocketseat.com.br/terminal-com-oh-my-zsh-spaceship-dracula-e-mais/ | |
| # Install Oh My Zsh | |
| sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
| git clone https://github.com/denysdovhan/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt" |
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
| Extensions: | |
| - Dracula Official | |
| - Material Icon Theme | |
| - Rocketseat React Native | |
| - Rocketseat ReactJs | |
| - Color Highlight | |
| Configurations (settings.json) : | |
| { | |
| { |