Created
March 28, 2021 00:57
-
-
Save rodpoblete/e59d35f465c061478b3ace25ce221273 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Ubuntu
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
{ | |
"workbench.activityBar.visible": true, | |
"editor.fontFamily": "Jetbrains Mono", | |
"editor.fontLigatures": true, | |
"editor.lineHeight": 23, | |
"workbench.editor.tabSizing": "shrink", | |
"editor.tabSize": 4, | |
"editor.insertSpaces": true, | |
"editor.cursorWidth": 5, | |
"editor.cursorStyle": "line", | |
"editor.cursorBlinking": "solid", | |
"window.zoomLevel": 0, | |
"eslint.alwaysShowStatus": true, | |
"editor.minimap.enabled": false, | |
"editor.wordWrap": "on", | |
"editor.rulers": [ | |
80, | |
100 | |
], | |
"[python]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 4 | |
}, | |
"window.menuBarVisibility": "toggle", | |
"cSpell.language": "es,en", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"cSpell.userWords": [ | |
"Berakah", | |
"Mini", | |
"Optimize", | |
"button", | |
"checkbox", | |
"checked", | |
"minimizer", | |
"optimization", | |
"patterns", | |
"production", | |
"styles" | |
], | |
"terminal.integrated.fontFamily": "Jetbrains Mono Medium", | |
"files.associations": { | |
"*.html": "html" | |
}, | |
"workbench.sideBar.location": "left", | |
"python.formatting.provider": "black", | |
"editor.formatOnSave": true, | |
"sync.gist": "793b0bb0960a34e650b4d8a96cca7df3", | |
"workbench.startupEditor": "newUntitledFile", | |
"python.pythonPath": "/usr/bin/python3", | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.editorAssociations": [ | |
{ | |
"viewType": "jupyter.notebook.ipynb", | |
"filenamePattern": "*.ipynb" | |
} | |
], | |
"workbench.colorTheme": "Gruvbox Dark Medium", | |
"editor.fontSize": 16, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"bracket-pair-colorizer-2.colors": [ | |
"#fbf1c7", | |
"#b16286", | |
"#fabd2f", | |
"#fe8019", | |
"#8ec07c", | |
"#d3869b" | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment