Skip to content

Instantly share code, notes, and snippets.

@thomasaarholt
Created September 27, 2021 10:24
Show Gist options
  • Save thomasaarholt/4c63d9f15a6895a4153e9bfa98f75360 to your computer and use it in GitHub Desktop.
Save thomasaarholt/4c63d9f15a6895a4153e9bfa98f75360 to your computer and use it in GitHub Desktop.
jupyter lab settings with auto closing brackets enabled in docker image
cat /root/.jupyter/lab/user-settings/@jupyterlab/notebook-extension/tracker.jupyterlab-settings
{
// Notebook
// @jupyterlab/notebook-extension:tracker
// Notebook settings.
// **************************************
// Code Cell Configuration
// The configuration for all code cells.
"codeCellConfig": {
"autoClosingBrackets": true,
"cursorBlinkRate": 530,
"fontFamily": null,
"fontSize": null,
"lineHeight": null,
"lineNumbers": false,
"lineWrap": "off",
"matchBrackets": true,
"readOnly": false,
"insertSpaces": true,
"tabSize": 4,
"wordWrapColumn": 80,
"rulers": [],
"codeFolding": false,
"lineWiseCopyCut": true,
"showTrailingSpace": false
},
// Markdown Cell Configuration
// The configuration for all markdown cells.
"markdownCellConfig": {
"autoClosingBrackets": true,
"cursorBlinkRate": 530,
"fontFamily": null,
"fontSize": null,
"lineHeight": null,
"lineNumbers": false,
"lineWrap": "on",
"matchBrackets": false,
"readOnly": false,
"insertSpaces": true,
"tabSize": 4,
"wordWrapColumn": 80,
"rulers": [],
"codeFolding": false,
"lineWiseCopyCut": true,
"showTrailingSpace": false
},
// Raw Cell Configuration
// The configuration for all raw cells.
"rawCellConfig": {
"autoClosingBrackets": true,
"cursorBlinkRate": 530,
"fontFamily": null,
"fontSize": null,
"lineHeight": null,
"lineNumbers": false,
"lineWrap": "on",
"matchBrackets": false,
"readOnly": false,
"insertSpaces": true,
"tabSize": 4,
"wordWrapColumn": 80,
"rulers": [],
"codeFolding": false,
"lineWiseCopyCut": true,
"showTrailingSpace": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment