Created
August 18, 2023 23:57
-
-
Save anthonycrumley/e4de460c182e917c3f848d207ece8d0f to your computer and use it in GitHub Desktop.
VS Code Settings
This file contains 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.condaPath": "C:\\Users\\antho\\anaconda3\\Scripts\\conda-script.py", | |
"python.defaultInterpreterPath": "C:\\Users\\antho\\anaconda3\\python.exe", | |
"python.pythonPath": "C:\\Users\\antho\\anaconda3\\python.exe", | |
"python.terminal.activateEnvironment": true, | |
"terminal.integrated.defaultLocation": "editor", | |
"python.linting.flake8Enabled": true, | |
"vim.normalModeKeyBindings": [ | |
// Open the settings JSON file. | |
{ | |
"before": ["leader", "s"], | |
"commands": [ | |
"workbench.action.openSettingsJson" | |
] | |
}, | |
// Run the file. | |
{ | |
"before": ["leader", "r"], | |
"commands": [ | |
"python.execInTerminal" | |
] | |
}, | |
// Debugging. | |
{ // Toggle breakpoints. | |
"before": ["leader", "b"], | |
"commands": [ | |
"editor.debug.action.toggleBreakpoint" | |
] | |
}, | |
{ // Begin debugging. | |
"before": ["leader", "d"], | |
"commands": [ | |
"workbench.action.debug.start" | |
] | |
}, | |
{ // Step over to next line in debugger. | |
"before": ["leader", "n"], | |
"commands": [ | |
"workbench.action.debug.stepOver" | |
] | |
}, | |
{ // Step into this line in debugger. | |
"before": ["leader", "i"], | |
"commands": [ | |
"workbench.action.debug.stepInto" | |
] | |
}, | |
{ // Step out of this method in debugger. | |
"before": ["leader", "o"], | |
"commands": [ | |
"workbench.action.debug.stepOut" | |
] | |
}, | |
{ // Continue in debugger. | |
"before": ["leader", "c"], | |
"commands": [ | |
"workbench.action.debug.continue" | |
] | |
} | |
], | |
"editor.rulers": [80,100], | |
"vim.leader": "<space>", | |
"editor.fontSize": 20, | |
"editor.minimap.enabled": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment