Instalar iTerm2 disponible en este link
Instalar oh-my-zsh con el siguiente comando:
| ZSH_THEME="powerlevel10k/powerlevel10k" | |
| plugins=(git zsh-autosuggestions zsh-syntax-highlighting autojump) | |
| source $ZSH/oh-my-zsh.sh | |
| [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh | |
| # ALIASES | |
| alias py=python | |
| alias tf=terraform | |
| alias cleanaws="cat /dev/null > ~/.aws/credentials && cat /dev/null > ~/.aws/config" |
| { | |
| "workbench.startupEditor": "newUntitledFile", | |
| "workbench.colorTheme": "One Monokai", | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.fontFamily": "JetBrains Mono", | |
| "editor.fontSize": 13, | |
| "editor.formatOnSave": true, | |
| "terminal.external.osxExec": "iTerm.app", | |
| "terminal.integrated.rendererType": "dom", | |
| "terminal.explorerKind": "external", |
| " VIM Configuration - Eloy Vega | |
| " Cancel the compatibility with Vi. Essential if you want to enjoy the features of Vim | |
| set nocompatible | |
| " Change Leader key | |
| let mapleader = "\<Space>" | |
| set nobackup | |
| set noswapfile |
Ve a tu consola de AWS e inicia sesión
Entra al servicio de Cloud9 y crea un nuevo ambiente
![alt text][cloud9]
I hereby claim:
To claim this, I am signing this object:
| ### Keybase proof | |
| I hereby claim: | |
| * I am eloyvega on github. | |
| * I am eloyvega (https://keybase.io/eloyvega) on keybase. | |
| * I have a public key ASCwXwmAymAQW9ooEIa8bajmNgtdoWJ47QeoH0FDE0CitAo | |
| To claim this, I am signing this object: |
| " VIM Configuration - Eloy Vega | |
| " Cancel the compatibility with Vi. Essential if you want to enjoy the features of Vim | |
| set nocompatible | |
| " PATHOGEN | |
| execute pathogen#infect() | |
| " Change Leader key | |
| let mapleader = "\<Space>" |
| # Avoid renaming windows with commands | |
| set-option -g allow-rename off | |
| # Use vim keybindings in copy mode | |
| setw -g mode-keys vi | |
| # Faster scrolling | |
| set -g @scroll-speed-num-lines-per-scroll 5 | |
| # Setup 'v' to begin selection as in Vim |