Skip to content

Instantly share code, notes, and snippets.

@sudarshan85
Created July 2, 2021 15:28
Show Gist options
  • Save sudarshan85/3a9bd0c5efa0434b8734f241b3326857 to your computer and use it in GitHub Desktop.
Save sudarshan85/3a9bd0c5efa0434b8734f241b3326857 to your computer and use it in GitHub Desktop.
jupyter config
#################### edit.json ##################
{
"Editor": {
"codemirror_options": {
"indentUnit": 2,
"vimMode": false,
"keyMap": "default"
}
},
"load_extensions": {
"codefolding/edit": true
}
}
######################### notebook.json ########################
{
"load_extensions": {
"nbextensions_configurator/config_menu/main": true,
"collapsible_headings/main": true,
"codefolding/main": true,
"execute_time/ExecuteTime": true,
"scratchpad/main": true,
"toc2/main": true
},
"CodeCell": {
"cm_config": {
"indentUnit": 2
}
},
"keys": {
"command": {
"bind": {
"alt-r": "jupyter-notebook:confirm-restart-kernel",
"alt-o": "jupyter-notebook:restart-kernel-and-clear-output",
"alt-1": "jupyter-notebook:clear-cell-output",
"alt-c": "jupyter-notebook:clear-all-cells-output"
}
}
},
"Cell": {
"cm_config": {
"lineNumbers": true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment