settings
This commit is contained in:
parent
d0c7288e8e
commit
d0b0d2585e
@ -53,6 +53,7 @@ COPY install_geckodriver.sh /tmp/
|
|||||||
## CONFIG
|
## CONFIG
|
||||||
# Copy over config which creates launcher icons in jupyterlab
|
# Copy over config which creates launcher icons in jupyterlab
|
||||||
COPY jupyter_notebook_config.py /home/jovyan/.jupyter/
|
COPY jupyter_notebook_config.py /home/jovyan/.jupyter/
|
||||||
|
COPY ./jupyterlab_settings /home/jovyan/.jupyter/lab/user-settings/@jupyterlab
|
||||||
|
|
||||||
# USER SETTINGS
|
# USER SETTINGS
|
||||||
RUN echo "export EDITOR=/usr/bin/vim" >> /home/$NB_USER/.bashrc
|
RUN echo "export EDITOR=/usr/bin/vim" >> /home/$NB_USER/.bashrc
|
||||||
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
// Theme
|
||||||
|
// @jupyterlab/apputils-extension:themes
|
||||||
|
// Theme manager settings.
|
||||||
|
// *************************************
|
||||||
|
|
||||||
|
// Selected Theme
|
||||||
|
// Application-level visual styling theme
|
||||||
|
"theme": "JupyterLab Dark"
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
@ -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
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user