settings.json
{
"php.docblock.propertySnippet": {},
"editor.fontFamily": "'Fira Code'",
"editor.fontLigatures": true,
"editor.fontSize": 14, // Tamaño de fuente cómodo para lectura
"editor.lineHeight": 22, // Espaciado entre líneas para mejor claridad
"editor.fontWeight": "400", // Peso regular de la fuente
"editor.renderWhitespace": "all", // Muestra espacios y tabulaciones para mejor control del código
"editor.cursorSmoothCaretAnimation": "on",// Animación suave del cursor
"editor.minimap.enabled": false, // Desactiva minimapa para menos distracciones (opcional)
"workbench.colorTheme": "Default Dark+", // Tema oscuro para menos fatiga visual (puedes cambiarlo)
"editor.smoothScrolling": true,
"sqltools.connections": [
{
"previewLimit": 50,
"server": "localhost",
"port": 5432,
"driver": "PostgreSQL",
"name": "indicadires_jobran",
"username": "jdrodriguezg",
"database": "indicadores_jobran"
},
{
"previewLimit": 50,
"server": "localhost",
"port": 5432,
"driver": "PostgreSQL",
"database": "indicadores_jobran",
"username": "postgres",
"name": "Localhost-jobran"
}
],
"editor.guides.indentation": true // Muestra guías de indentación para mejor estructura visual
}
Comments