-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Compass Navigator.sublime-settings
38 lines (29 loc) · 1.05 KB
/
Compass Navigator.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
{
"debug": true,
// This will allow you to jump to the most
// recently used view when displaying the stack
"jump_to_most_recent_on_show": true,
// Point to ripgrep executable
// Enables listing files in the sidebar via #open tag
"ripgrep_path": "",
// If ripgrep_path is set, unopend files will be shown only when the window is empty
"only_show_unopened_files_on_empty_window": true,
// Enable filterable tags
"enable_tags": false,
// Preview when an item gets highlighted
"preview_on_highlight": true,
// Add a line previewing the cursor position in that view
"enable_context_preview": true,
// Max limit of opened tabs. Set to 0 to disable
"max_open_tabs": 1000,
// Whether we show items across groups or only the active group
"only_show_items_in_focused_group": true,
// Settings for compass plugins
"plugins": {
"files": {
"enabled": true,
// Enabling this will not see newly created files
"enable_cache": false
}
}
}