Skip to content

Instantly share code, notes, and snippets.

View simpledescifrador's full-sized avatar
😎
Awesome

Edison Villarta simpledescifrador

😎
Awesome
View GitHub Profile
@simpledescifrador
simpledescifrador / settings.json
Created May 12, 2020 16:49
My Custom Workspace Settings for VSCode
{
"files.autoSave": "onFocusChange",
"editor.minimap.enabled": true,
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"editor.formatOnSave": false,
"workbench.colorCustomizations": {
"statusBar.background": "#110d1f",
"statusBar.noFolderBackground": "#303030",
@simpledescifrador
simpledescifrador / customcss.css
Last active May 3, 2021 11:39
VSCode Custom CSS
/* Add the subtle gradient to the editor background */
.monaco-editor {
background-color: transparent !important;
background-image: linear-gradient(to bottom, #2a2139 75%, #34294f);
background-size: auto 100vh;
background-position: top;
background-repeat: no-repeat;
}
.monaco-workbench {