Files
omarchy_setup/.zshrc.local.example
google-labs-jules[bot] e46b1e031e feat: add dev tools, AI aliases, and improve zshrc documentation
This commit introduces several new features and improvements:

- **Adds Development Tools to `apps.sh`:** The `apps.sh` module now installs essential development tools, including `python`, `pip`, `nodejs`, `npm`, `uv`, and `nvm`.

- **Implements `.zshrc.local` for Private Variables:**
  - A `.zshrc.local.example` file has been added to serve as a template for users to securely store their private environment variables, such as API keys.
  - The main `.zshrc` file now sources `.zshrc.local` if it exists.

- **Adds AI Aliases to `.zshrc`:** A new section has been added to `.zshrc` with example aliases for interacting with command-line AI tools.

- **Improves `.zshrc` Documentation:** The `.zshrc` file has been thoroughly documented with comments in Spanish, explaining the purpose of each section. The title has also been updated and professionalized.

- **Fixes a Regression:** This commit restores the `ytm`, `ytv`, `ytls`, and SSH agent functions in `.zshrc` that were accidentally removed in a previous step.
2025-11-19 05:51:30 +00:00

33 lines
1.2 KiB
Plaintext

# =============================================================================
# .zshrc.local - CONFIGURACIONES LOCALES Y PRIVADAS
# =============================================================================
#
# Este archivo es para tus configuraciones personales, como variables de
# entorno, claves de API y alias privados.
#
# Para usarlo:
# 1. Renombra este archivo a `.zshrc.local`.
# 2. Descomenta y añade tus claves y configuraciones.
#
# El archivo `.zshrc` principal cargará este fichero automáticamente si existe,
# manteniendo tus datos privados separados de la configuración principal.
#
# =============================================================================
# --- Claves de API para Modelos de IA ---
# Descomenta las líneas que necesites y añade tus claves.
# export OPENAI_API_KEY="sk-..."
# export GOOGLE_API_KEY="..."
# export ANTHROPIC_API_KEY="..."
# --- Otras Variables de Entorno ---
# Ejemplo de una variable para un token de GitHub.
# export GITHUB_TOKEN="ghp_..."
# --- Alias Personales ---
# Puedes añadir aquí tus propios alias para no modificar el .zshrc principal.
#
# alias miservidor="ssh usuario@servidor.com"
# alias mi-proyecto="cd ~/Rutas/a/mi/proyecto"