Skip to content

Instantly share code, notes, and snippets.

@tushortz
Created April 7, 2018 04:26
Show Gist options
  • Save tushortz/b3aaa2154453690793cf0c9d52ab51e0 to your computer and use it in GitHub Desktop.
Save tushortz/b3aaa2154453690793cf0c9d52ab51e0 to your computer and use it in GitHub Desktop.
visual studio code personal settings
{
"files.autoSave": "afterDelay",
"editor.fontSize": 12,
"editor.fontFamily": "consolas, 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.wordWrap": "on",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.py[cd]": true,
"**/__pycache__/": true,
},
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.tabCompletion": true,
"scm.alwaysShowProviders": true,
"workbench.sideBar.location": "right",
"workbench.view.alwaysShowHeaderActions": true,
"files.autoSaveDelay": 60000,
"files.useExperimentalFileWatcher": true,
"search.location": "panel",
"debug.inlineValues": true,
"html.trace.server": "messages",
"json.trace.server": "messages",
"markdown.trace": "verbose",
"php.validate.executablePath": "php",
"typescript.tsserver.log": "verbose",
"css.trace.server": "verbose",
"terminal.integrated.fontFamily": "consolas",
"java.home": "/usr/lib/jvm/java-9-oracle",
"java.trace.server": "verbose",
"python.pythonPath": "python3",
"python.venvFolders": [
"env",
"envs",
"venv",
".env",
".pyenv",
".direnv"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment