Skip to content

Instantly share code, notes, and snippets.

@rogervila
Last active February 15, 2022 12:12
Show Gist options
  • Save rogervila/668b44bc620626f9e9389a04ccfeafaf to your computer and use it in GitHub Desktop.
Save rogervila/668b44bc620626f9e9389a04ccfeafaf to your computer and use it in GitHub Desktop.
VSCode Settings
{
"workbench.startupEditor": "newUntitledFile",
"tabnine.experimentalAutoImports": true,
"editor.fontSize": 20,
"editor.lineHeight": 45,
"editor.cursorBlinking": "smooth",
"editor.multiCursorModifier": "ctrlCmd",
"editor.mouseWheelScrollSensitivity": 1,
"editor.trimAutoWhitespace": true,
"editor.formatOnSave": true,
"files.autoSave": "onFocusChange",
"files.trimTrailingWhitespace": true,
"files.eol": "\n",
"files.insertFinalNewline": true,
"git.autofetch": true,
"extensions.ignoreRecommendations": true,
"intelephense.files.exclude": [
"**/.git/**",
"**/node_modules/**",
"**/bower_components/**",
],
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/bower_components/*/**": true,
"**/vendor/*/**": true
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/__pycache__": true
},
"search.quickOpen.includeHistory": false,
"python.showStartPage": false,
"python.linting.pylintEnabled": true,
"files.associations": {
"Dockerfile_*": "dockerfile"
},
"emmet.triggerExpansionOnTab": true,
"diffEditor.ignoreTrimWhitespace": false,
"python.languageServer": "Pylance",
"git.confirmSync": true,
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"git.suggestSmartCommit": false,
"security.workspace.trust.enabled": false,
"window.title": "${dirty}${activeEditorLong}${separator}${rootName}${separator}${appName}",
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"window.zoomLevel": 1,
"bladeFormatter.format.wrapLineLength": 288,
}
@rogervila
Copy link
Author

rogervila commented Oct 25, 2021

Installed extensions:

image

Update:

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment