Skip to content

Instantly share code, notes, and snippets.

@edsonmgoz
Created February 5, 2026 05:05
Show Gist options
  • Select an option

  • Save edsonmgoz/d95ade0bf5b33971f90eae822b29a0d3 to your computer and use it in GitHub Desktop.

Select an option

Save edsonmgoz/d95ade0bf5b33971f90eae822b29a0d3 to your computer and use it in GitHub Desktop.
Terminal DevOps - Primeros pasos
# 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