Skip to content

Instantly share code, notes, and snippets.

@cranzy
Forked from robbdimitrov/keybindings.json
Created June 12, 2019 11:59
Show Gist options
  • Save cranzy/c05a62da0e844638efef41b78a0566bb to your computer and use it in GitHub Desktop.
Save cranzy/c05a62da0e844638efef41b78a0566bb to your computer and use it in GitHub Desktop.
Visual Studio Code settings
{
"files.exclude": {
"**/__pycache__": true,
"**/.DS_Store": true,
"**/.git": true,
"**/*.js": {
"when": "$(basename).ts"
},
"**/*.map": {
"when": "$(basename).map"
}
},
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.detectIndentation": true,
"editor.minimap.enabled": true,
"editor.rulers": [80],
"emmet.includeLanguages": {
"javascript": "javascriptreact",
},
"workbench.colorTheme": "Visual Studio Dark",
"workbench.startupEditor": "newUntitledFile",
"workbench.activityBar.visible": true,
"workbench.statusBar.visible": true,
"window.zoomLevel": 0,
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"python.venvFolders": [
"envs",
".pyenv",
".direnv",
".virtualenvs"
],
"go.inferGopath": true,
"go.toolsGopath": "~/.go"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment