Created
July 2, 2021 15:28
-
-
Save sudarshan85/3a9bd0c5efa0434b8734f241b3326857 to your computer and use it in GitHub Desktop.
jupyter config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################### 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