Keybindings
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+alt+v",
"command": "toggleVim"
},
{
"key": "ctrl+'",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+shift+'",
"command": "workbench.action.terminal.new"
}
]
Settings
{
"editor.fontLigatures": true,
"editor.fontFamily": "Consolas, 'Courier New', monospace",
"files.autoSave": "off",
"editor.tabSize": 2,
"editor.detectIndentation": false,
"vim.disableExtension": true,
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
},
"Cygwin": {
"path": "C:\\cygwin64\\bin\\bash.exe",
"args": [
"--login"
],
"env": {
"TURNIP": "flibble",
"CHERE_INVOKING": "y"
}
}
},
"terminal.integrated.defaultProfile.windows": "Cygwin",
"terminal.integrated.allowChords": false,
"window.zoomLevel": 1,
"[python]": {
"editor.formatOnType": true
}
}