Created
February 5, 2026 05:05
-
-
Save edsonmgoz/d95ade0bf5b33971f90eae822b29a0d3 to your computer and use it in GitHub Desktop.
Terminal DevOps - Primeros pasos
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
| # Homebrew (macOS) | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| # Zsh (instalar y dejar por defecto) | |
| brew install zsh | |
| chsh -s "$(which zsh)" | |
| # Tabby (terminal) | |
| brew install --cask tabby | |
| # Oh My Zsh | |
| sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
| # powerlevel10k | |
| brew install powerlevel10k | |
| echo "source $(brew --prefix)/share/powerlevel10k/powerlevel10k.zsh-theme" >> ~/.zshrc | |
| # Abrir configuración principal de zsh | |
| nano ~/.zshrc | |
| # Alias (pegar dentro de ~/.zshrc) | |
| alias zshconfig="vim ~/.zshrc" | |
| alias zshreload="source ~/.zshrc" | |
| alias e="exit" | |
| alias c="clear" | |
| alias k="kubectl" | |
| alias lg="lazygit" | |
| alias dev="cd ~/Code" | |
| # Recargar configuración | |
| source ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment