Jupyter Notebook で新規セルのデフォルトタイプを変更するには,以下のようにファイルに1行書くと動く。またはブラウザーの開発者ツールの Console で1行実行してもよい。という話。

mkdir -p ~/.jupyter/custom
vim ~/.jupyter/custom/custom.js
// in ['code','markdown', 'raw'], defaults to 'code'
// or the special values of
// 'above', 'below', or 'selected' to get the value from another cell.
Jupyter.notebook.class_config.set("default_cell_type", "selected");
続きを読む