Answers above are all good. It took me long time to figure out exactly where to put these snippets. In VSCode go to File | Preferences | Keyboard Shortcuts. Switch to json text view by pressing small icon on top-right: Open Keyboard Shortcuts (JSON) and edit setting file: keybindings.json
Example keybindings.json:
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+c",
"command": "workbench.action.terminal.copySelection",
"when": "terminalFocus"
},
{
"key": "ctrl+v",
"command": "workbench.action.terminal.paste",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+c",
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "\u0003"
},
"when": "terminalFocus"
},
]