mirror of
https://github.com/marcogll/omarchy_setup.git
synced 2026-01-13 21:35:16 +00:00
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. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> Co-authored-by: Marco Gallegos <marco.gallegos@outlook.com>
33 lines
1.2 KiB
Plaintext
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"
|