Add initial setup scripts and configuration files for development environment
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Lista de extensiones a instalar
|
||||
EXTENSIONES=(
|
||||
"ms-python.python"
|
||||
"ms-python.vscode-pylance"
|
||||
"ms-toolsai.jupyter"
|
||||
"ms-toolsai.jupyter-keymap"
|
||||
"ms-toolsai.jupyter-renderers"
|
||||
"ms-toolsai.vscode-jupyter-cell-tags"
|
||||
"ms-toolsai.vscode-jupyter-slideshow"
|
||||
)
|
||||
|
||||
# Función para instalar extensiones
|
||||
instalar_extensiones() {
|
||||
for EXT in "${EXTENSIONES[@]}"; do
|
||||
echo "Instalando $EXT..."
|
||||
code --install-extension "$EXT"
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "✅ $EXT instalado correctamente."
|
||||
else
|
||||
echo "❌ Error al instalar $EXT."
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
# Ejecutar la instalación
|
||||
instalar_extensiones
|
||||
echo "🚀 ¡Instalación completada!"
|
||||
Reference in New Issue
Block a user