blob: da940295785caf05df6abcb787a4b7f59ee685f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
// File Browser
// @jupyterlab/filebrowser-extension:browser
// File Browser settings.
// *****************************************
// Use checkboxes to select items
// Whether to show checkboxes next to files and folders
"showFileCheckboxes": true,
// Show file size column
// Whether to show the file size column
"showFileSizeColumn": false,
// Show full path in browser bread crumbs
// Whether to show full path in browser bread crumbs
"showFullPath": true,
// Show last modified column
// Whether to show the last modified column
"showLastModifiedColumn": false,
// When sorting by name, group notebooks before other files
// Whether to group the notebooks away from files
"sortNotebooksFirst": true
}
|