Skip to content

Instantly share code, notes, and snippets.

@mauroeparis
Created October 25, 2021 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mauroeparis/2061ebb3239289a9bf7c5742677652c0 to your computer and use it in GitHub Desktop.
Save mauroeparis/2061ebb3239289a9bf7c5742677652c0 to your computer and use it in GitHub Desktop.
{
"workbench.colorTheme": "SynthWave '84",
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"workbench.startupEditor": "none",
"window.zoomLevel": 2,
"editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.rulers": [
80
],
"editor.fontSize": 13,
"files.exclude": {
"**/.git": true, // this is a default value
"**/.DS_Store": true, // this is a default value
"**/node_modules": true, // this excludes all folders
// named "node_modules" from
// the explore tree
// alternative version
"node_modules": true, // this excludes the folder
// only from the root of
// your workspace
"venv": true,
"lib": true,
"**/*.min.js": true,
"**/*.min.css": true,
"**/*.pyc": {
"when": "$(basename).py"
},
"**/__pycache__": true
},
"editor.cursorSurroundingLines": 15,
"extensions.ignoreRecommendations": true,
"terminal.integrated.gpuAcceleration": "no",
"workbench.preferredDarkColorTheme": "SynthWave '84",
"synthwave84.brightness": 1,
"editor.minimap.enabled": false,
"customizeUI.titleBar": "inline",
"editor.hideCursorInOverviewRuler": true, // hides cursor mark in the overview ruler
"editor.folding": false, // removes the folding feature
"editor.glyphMargin": false,
"json.schemas": [
],
"editor.cursorStyle": "line",
"editor.lineNumbers": "on",
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
"editor.wordWrap": "off",
"gitlens.codeLens.enabled": false,
"gitlens.statusBar.enabled": false,
"tabnine.experimentalAutoImports": true,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"[html]": {
"editor.tabSize": 2,
},
"[javascript]": {
"editor.tabSize": 2,
},
"gitlens.menus": false,
"workbench.statusBar.visible": false,
"workbench.activityBar.visible": false,
"jupyter.interactiveWindowMode": "perFile",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment