From dc4345a5ee23ffb4aad50c01eca49d5bc47a96c3 Mon Sep 17 00:00:00 2001
From: Vicente Roa <79950811+vicenteroa@users.noreply.github.com>
Date: Sat, 14 Dec 2024 03:52:58 -0300
Subject: [PATCH] docs(README): translate README.md to Spanish (#5054)
## Description
This pull request translates the README.md file from English to Spanish
to provide Spanish-speaking users with an easier way to understand the
setup and features of LazyVim. The translation includes all sections of
the original file, ensuring that the core documentation remains intact
while making it more accessible to a broader audience.
## Related Issue(s)
None.
## Screenshots
None.
## Checklist
- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md)
guidelines.
---
README-ES.md | 145 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 145 insertions(+)
create mode 100644 README-ES.md
diff --git a/README-ES.md b/README-ES.md
new file mode 100644
index 00000000..06e64f96
--- /dev/null
+++ b/README-ES.md
@@ -0,0 +1,145 @@
+
+

+
+
+
+
+
+
+
+
+LazyVim es una configuración de Neovim impulsada por [💤 lazy.nvim](https://github.com/folke/lazy.nvim) que facilita la personalización y extensión de tu configuración. En lugar de tener que elegir entre comenzar desde cero o usar una distribución predefinida, LazyVim ofrece lo mejor de ambos mundos: la flexibilidad para ajustar tu configuración según sea necesario, junto con la conveniencia de una configuración preconfigurada.
+
+
+
+
+
+## ✨ Características
+
+- 🔥 Convierte tu Neovim en un IDE completo
+- 💤 Personaliza y extiende fácilmente tu configuración con [lazy.nvim](https://github.com/folke/lazy.nvim)
+- 🚀 Extremadamente rápido
+- 🧹 Ajustes predeterminados sensatos para opciones, autocmds y combinaciones de teclas
+- 📦 Viene con una gran cantidad de plugins preconfigurados y listos para usar
+
+## ⚡️ Requisitos
+
+- Neovim >= **0.9.0** (debe ser compilado con **LuaJIT**)
+- Git >= **2.19.0** (para soporte de clones parciales)
+- una [Fuente Nerd](https://www.nerdfonts.com/) **_(opcional)_**
+- un compilador **C** para `nvim-treesitter`. Consulta [aquí](https://github.com/nvim-treesitter/nvim-treesitter#requirements)
+
+## 🚀 Empezando
+
+Puedes encontrar una plantilla de inicio para **LazyVim** [aquí](https://github.com/LazyVim/starter)
+
+Probarlo con Docker
+
+```sh
+docker run -w /root -it --rm alpine:edge sh -uelic '
+ apk add git lazygit fzf curl neovim ripgrep alpine-sdk --update
+ git clone https://github.com/LazyVim/starter ~/.config/nvim
+ cd ~/.config/nvim
+ nvim
+'
+```
+
+
+
+Instalar el LazyVim Starter
+
+- Haz una copia de seguridad de tus archivos actuales de Neovim:
+
+ ```sh
+ mv ~/.config/nvim ~/.config/nvim.bak
+ mv ~/.local/share/nvim ~/.local/share/nvim.bak
+ ```
+
+- Clona el starter
+
+ ```sh
+ git clone https://github.com/LazyVim/starter ~/.config/nvim
+ ```
+
+- Elimina la carpeta `.git`, para que puedas agregarla a tu propio repositorio más tarde
+
+ ```sh
+ rm -rf ~/.config/nvim/.git
+ ```
+
+- ¡Inicia Neovim!
+
+ ```sh
+ nvim
+ ```
+
+ Consulta los comentarios en los archivos sobre cómo personalizar **LazyVim**.
+
+
+
+---
+
+Hay un excelente video creado por [@elijahmanor](https://github.com/elijahmanor) con una guía para empezar.
+
+[](https://www.youtube.com/watch?v=N93cTbtLCIM)
+
+[@dusty-phillips](https://github.com/dusty-phillips) escribió un libro completo llamado
+[LazyVim para Desarrolladores Ambiciosos](https://lazyvim-ambitious-devs.phillips.codes)
+disponible de forma gratuita en línea.
+
+## 📂 Estructura de Archivos
+
+Los archivos dentro de la configuración se cargarán automáticamente en el momento adecuado,
+por lo que no necesitas requerir esos archivos manualmente.
+**LazyVim** viene con un conjunto de archivos de configuración predeterminados que se cargarán
+**_antes_** que los tuyos. Consulta [aquí](https://github.com/LazyVim/LazyVim/tree/main/lua/lazyvim/config)
+
+Puedes agregar tus especificaciones de plugins personalizadas en `lua/plugins/`. Todos los archivos allí
+serán cargados automáticamente por [lazy.nvim](https://github.com/folke/lazy.nvim)
+
+
+~/.config/nvim
+├── lua
+│ ├── config
+│ │ ├── autocmds.lua
+│ │ ├── keymaps.lua
+│ │ ├── lazy.lua
+│ │ └── options.lua
+│ └── plugins
+│ ├── spec1.lua
+│ ├── **
+│ └── spec2.lua
+└── init.lua
+
+
+## ⚙️ Configuración
+
+Consulta la [documentación](https://lazyvim.github.io)