Skip to content

Commit

Permalink
settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mathematicalmichael committed Nov 28, 2021
1 parent d0c7288 commit d0b0d25
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions singleuser/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ COPY install_geckodriver.sh /tmp/
## CONFIG
# Copy over config which creates launcher icons in jupyterlab
COPY jupyter_notebook_config.py /home/jovyan/.jupyter/
COPY ./jupyterlab_settings /home/jovyan/.jupyter/lab/user-settings/@jupyterlab

# USER SETTINGS
RUN echo "export EDITOR=/usr/bin/vim" >> /home/$NB_USER/.bashrc
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
// Theme
// @jupyterlab/apputils-extension:themes
// Theme manager settings.
// *************************************

// Selected Theme
// Application-level visual styling theme
"theme": "JupyterLab Dark"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// CodeMirror
// @jupyterlab/codemirror-extension:commands
// Text editor settings for all CodeMirror editors.
// ************************************************

// Key Map
// Configures the keymap to use
"keyMap": "default",

// Theme
// CSS file defining the corresponding
// .cm-s-[name] styles is loaded
"theme": "solarized dark"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
// Extension Manager
// @jupyterlab/extensionmanager-extension:plugin
// Extension manager settings.
// *********************************************

// Disclaimed Status
// Whether the user understand that extensions managed through this interface run arbitrary code that may be dangerous
"disclaimed": true
}

0 comments on commit d0b0d25

Please sign in to comment.