Last active
March 30, 2017 23:15
-
-
Save mardix/9ad4275325ea7aea462c32a84c021dd4 to your computer and use it in GitHub Desktop.
My VSCode Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"python.pythonPath": "/Users/Mardix/.virtualenvs/${workspaceRootFolderName}/bin/python" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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