29 lines
No EOL
793 B
JSON
29 lines
No EOL
793 B
JSON
{
|
|
|
|
// Hot reload setting that needs to be in user settings
|
|
// "jupyter.runStartupCommands": [
|
|
// "%load_ext autoreload", "%autoreload 2"
|
|
// ]
|
|
// --- VIM SETTINGS ---
|
|
// "vim.useSystemClipboard": true,
|
|
"vim.enableNeovim": false,
|
|
|
|
// Allow VSCode native keybindings to override Vim when needed
|
|
"vim.handleKeys": {
|
|
"<C-p>": false,
|
|
"<C-P>": false,
|
|
"<C-S-p>": false,
|
|
"<C-c>": false,
|
|
"<C-v>": false,
|
|
"<C-S-v>": false,
|
|
"<C-S-c>": false
|
|
},
|
|
|
|
// Terminal copy/paste via Ctrl+Shift+C / Ctrl+Shift+V
|
|
"terminal.integrated.copyOnSelection": false,
|
|
"terminal.integrated.commandsToSkipShell": [
|
|
"workbench.action.terminal.copySelection",
|
|
"workbench.action.terminal.paste"
|
|
],
|
|
|
|
} |