Skip to content

Instantly share code, notes, and snippets.

@mardix
Last active March 30, 2017 23:15
Show Gist options
  • Save mardix/9ad4275325ea7aea462c32a84c021dd4 to your computer and use it in GitHub Desktop.
Save mardix/9ad4275325ea7aea462c32a84c021dd4 to your computer and use it in GitHub Desktop.
My VSCode Settings
{
"python.pythonPath": "/Users/Mardix/.virtualenvs/${workspaceRootFolderName}/bin/python"
}
// Place your settings in this file to overwrite the default settings
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/*.pyc": true,
"*.pyc": true
},
"workbench.iconTheme": "vscode-icons",
"files.autoSave": "afterDelay",
"window.openFilesInNewWindow": "on",
"window.openFoldersInNewWindow": "on",
"window.reopenFolders": "all",
"terminal.integrated.shellArgs.osx": [
"-l"
],
"python.linting.enabled": false,
"python.linting.pylintEnabled": false,
"editor.rulers": [
120
],
"editor.fontSize": 16,
"workbench.sideBar.location": "right",
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": false,
"workbench.colorTheme": "Kary Foundation - Dark",
"files.autoSaveDelay": 15000
}
VS Code Plugins
- python
- magicpython
- jade
- jinja
- local history
- eslint
- vscode-icons
- js-css-html formatter
- project-manager
- intellij idea keybindings
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment