-
Notifications
You must be signed in to change notification settings - Fork 3
/
Preferences.sublime-settings
38 lines (32 loc) · 1.06 KB
/
Preferences.sublime-settings
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
27
28
29
30
31
32
33
34
35
36
37
38
{
// Set the default projects path for Sesame.
// You can specify multiple paths using ':' for POSIX or ';' for Windows.
// Examples:
// "sesame.path": "~/projects:~/work:~/src"
// "sesame.path": "~/projects"
// "sesame.path": "~/projects:~/work:~/src"
// "sesame.path": ["~/projects", "~/work", "~/src"]
// "sesame.path": [
// {
// "path": "~/projects",
// "depth": 1
// }
// {
// "path": "~/work",
// "vcs": true
// }
// ]
/*
"sesame.path": "",
*/
// Set the depth for organizing projects. Default is 2.
// For a single directory level, set "sesame.depth": 1.
"sesame.depth": 2,
// Set whether to use version control system (VCS) integration for projects.
// - null: Include version controlled and non-version controlled projects.
// - true: Include only version controlled projects.
// - false: Exclude version controlled projects.
"sesame.vcs": null,
// Enable the default keymaps.
"sesame.keymaps": true
}