mirror of
https://github.com/Hestia-Homes/insight.git
synced 2026-06-08 11:17:25 +00:00
42 lines
No EOL
1.1 KiB
JSON
42 lines
No EOL
1.1 KiB
JSON
{
|
|
"jupyter.interactiveWindow.textEditor.executeSelection": true,
|
|
"python.REPL.sendToNativeREPL": true,
|
|
"notebook.output.scrolling": true,
|
|
"terminal.integrated.defaultProfile.linux": "bash",
|
|
"editor.rulers": [67],
|
|
"terminal.integrated.profiles.linux": {
|
|
"bash": {
|
|
"path": "/bin/bash"
|
|
}
|
|
},
|
|
|
|
// 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,
|
|
"<C-S-e>": false,
|
|
"<C-j>": false,
|
|
"<C-b>": 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"
|
|
],
|
|
|
|
|
|
// Hot reload setting that needs to be in user settings
|
|
// Ctrl + Shit + P , Prefernce: Open User Setting (JSON)
|
|
// "jupyter.runStartupCommands": [
|
|
// "%load_ext autoreload", "%autoreload 2"
|
|
// ]
|
|
|
|
|
|
} |