Skip to content

Instantly share code, notes, and snippets.

@pckilgore
Created June 4, 2018 17:44
Show Gist options
  • Save pckilgore/7381f7b1f3ad48de459c7e401c1fdefc to your computer and use it in GitHub Desktop.
Save pckilgore/7381f7b1f3ad48de459c7e401c1fdefc to your computer and use it in GitHub Desktop.
{
"editor.fontFamily": "Hack, 'Ubuntu Mono','Droid Sans Mono', monospace",
"editor.fontSize": 12.5,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.wordWrap": "bounded",
"editor.wordWrapColumn": 100,
"editor.minimap.enabled": false,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"files.hotExit": "off",
"files.exclude": {
"**/.hg": true,
"**/.direnv": true,
"**/.gitoff": true,
"**/.svn": true,
"**/.DS_Store": true,
"**/*.pyc": true,
"**/*.cache": true,
"**/*__pycache__": true,
"**/.tox": true,
"**/.benchmarks": true,
".vscode/tags": true,
"**/.pytest_cache": true
},
"files.associations": {
".gitignore": "shellscript"
},
"search.useIgnoreFiles": true,
"window.openFoldersInNewWindow": "off",
"window.title": "${activeEditorMedium}${separator}${rootName}",
"window.zoomLevel": 0,
"workbench.colorCustomizations": {
"editorWarning.foreground": "#ec0"
},
"workbench.iconTheme": "vs-minimal",
// JS Config
"javascript.implicitProjectConfig.checkJs": true,
"[javascript]": {
"editor.tabSize": 2,
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "boundary",
"editor.renderControlCharacters": false,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.rulers": [
100
],
"editor.trimAutoWhitespace": false,
},
// Python Config
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"python.unitTest.pyTestPath": "py.test",
"[python]": {
"editor.tabSize": 4,
"editor.rulers": [
79
]
},
// Rust config
"rust-client.channel": "stable",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment