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
# Guía de Configuración Unificada de Git para Windows y WSL | |
Esta guía te proporcionará los comandos necesarios para unificar tu configuración de Git y la gestión de claves SSH entre tu entorno de Windows y tus distribuciones de Windows Subsystem for Linux (WSL). | |
--- | |
## Antes de empezar: | |
- Reemplaza `<TuNombreDeUsuarioWindows>` con tu nombre de usuario real de Windows. | |
- Reemplaza `<TuNombreDeUsuarioWSL>` con tu nombre de usuario real de WSL. |
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
ç# Font | |
MesloLGL Nerd Font | |
# Programming languages | |
Java, Golang, Python, Rust, Javascript | |
# update and upgrade | |
sudo apt update && sudo apt upgrade -y | |
# build-essential |
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
[user] | |
name = # Your full name for commit authoring. | |
email = # Your email for commits. | |
[color] | |
ui = auto # Enables color output for better readability. | |
[init] | |
defaultBranch = main # Sets 'main' as the default branch name for new repositories. |
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
# Ghostty Terminal Configuration | |
# ============================ | |
# Split Management | |
# --------------- | |
# Create new splits in different directions | |
keybind = control+shift+down=new_split:down | |
keybind = control+shift+up=new_split:up | |
keybind = control+shift+right=new_split:right | |
keybind = control+shift+left=new_split:left |