Created
May 19, 2020 12:32
-
-
Save IdanBanani/0d562770f14f3098debb6e1d47179e3f to your computer and use it in GitHub Desktop.
need to be fixed - 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
{ | |
"code-runner.clearPreviousOutput": true, | |
"code-runner.showExecutionMessage": false, | |
"code-runner.ignoreSelection": true, | |
"code-runner.runInTerminal": true, | |
"code-runner.saveFileBeforeRun": true, | |
"diffEditor.renderSideBySide": true, | |
"debug.console.fontFamily": "Source Code Pro", | |
"debug.console.fontSize": 22, | |
"enableTelemetry": true, | |
"editor.acceptSuggestionOnEnter": "off", | |
"editor.cursorStyle": "line", | |
"editor.cursorBlinking": "smooth", | |
"editor.fontSize": 26, | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"editor.quickSuggestionsDelay": 100, | |
"editor.suggestSelection": "first", | |
"editor.tabSize": 2, | |
"editor.fontWeight": "500", | |
"editor.snippetSuggestions": "top", | |
"editor.trimAutoWhitespace": true, | |
"editor.wordWrap": "off", | |
//"editor.fontFamily": "Source Code Pro", | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.openEditors.visible": 0, | |
"explorer.sortOrder": "type", | |
"files.trimFinalNewlines": true, | |
"files.exclude": { | |
"**/.git": true, | |
"**/tmp": true, | |
"**/*.pyc": true, | |
"**/*.asset-cache": true, | |
"**/*.cache": true, | |
"**/__pycache__": true, | |
"**/.pytest_cache": true, | |
"**/*.egg-info": true, | |
}, | |
"git.autofetch": true, | |
"java.semanticHighlighting.enabled": true, | |
"kite.showWelcomeNotificationOnStartup": false, | |
"python.jediEnabled": false, | |
//"python.pythonPath": "C:\\Users\\Idan\\AppData\\Local\\Programs\\Python\\Python38\\python.exe", | |
"python.pipenvPath": "pipenv", | |
"python.testing.pytestEnabled": true, | |
"python.venvPath": "C:\\Users\\Idan\\.virtualenvs", | |
// this is the actual locatation | |
// of the pythonpath C:\\Users\\Idan\\.virtualenvs\\Idan-iyfIpKqV\Scripts\python.exe | |
"python.pythonPath": "$venvPath\\pipenvPath\\Scripts\\python.exe", | |
//"python.pythonPath": "$venvPath\\ENV-NAME\\Scripts\\python.exe", | |
"pythonTestExplorer.testFramework": "pytest", | |
"python.linting.enabled": true, | |
"python.linting.pylintEnabled": true, | |
"python.formatting.provider": "autopep8", | |
"python.linting.pylintArgs": [ | |
"--generate-members" | |
], | |
"code-runner.executorMap": { | |
"python": "$pythonPath -u $fullFileName" | |
}, | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"vsicons.dontShowNewVersionMessage": true, | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"window.zoomLevel": -2, | |
"workbench.colorTheme": "Dracula", | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.settings.editor": "json", | |
"workbench.settings.openDefaultSettings": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.statusBar.feedback.visible": false, | |
"workbench.editor.highlightModifiedTabs": true, | |
"zenMode.centerLayout": false, | |
"zenMode.fullScreen": false, | |
"zenMode.hideLineNumbers": false, | |
"zenMode.hideTabs": false, | |
"[python]": { | |
"editor.detectIndentation": false, | |
"editor.insertSpaces": true, | |
"editor.rulers": [ | |
72, | |
80 | |
], | |
"editor.tabSize": 2, | |
"editor.wordWrapColumn": 80, | |
"editor.wordWrap": "wordWrapColumn", | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment