Git Product home page Git Product logo

config-zsh's Introduction

Instalación entorno de desarrollo en Windows con WSL

Herramientas: Zsh + Oh My Zsh + plugins + Docker + GO + Node + Python

Este documento detalla los pasos para instalar Zsh, Oh My Zsh, plugins útiles y docker en tu sistema.

Pasos

  1. Actualizar el sistema:
    sudo apt update
    sudo apt upgrade
    
  2. Descargar Zsh:
    sudo apt install zsh
    
  3. Descargar Oh My Zsh:
    sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
    
  4. Descargar tema powerlevel10k:
    git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
    
  5. Modificar el tema:
    nano .zshrc
    ZSH_THEME="powerlevel10k/powerlevel10k"
    
  6. Iniciar el asistente:
    source ~/.zshrc
    
  7. Instalar plugins:
    git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
    
    git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
    
  8. Activar plugins:
    nano .zshrc
    
    plugins=(git
        zsh-syntax-highlighting
        zsh-autosuggestions
    )
    
    source ~/.zshrc
    
  9. Cambiar la apariencia:
    Cambiar la apariencia de windows terminal a Campbell
    
  10. Instalar Docker:
    YT:	    https://www.youtube.com/watch?v=A34k_dp8CxM
    Doc:	https://docs.docker.com/engine/install/ubuntu/
    
  11. Instalar GO:
    YT:     https://www.youtube.com/watch?v=9LSpTlCZ8xQ
    
  12. Instalar Python:
    Ubuntu 24.04 viene con Python 3.12.3
    
  13. Instalar NVM y Node:
    nvm
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
    source ~/.zshrc
    
    node
    nvm install --lts

config-zsh's People

Contributors

rmbertolino avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.