-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutline.sublime-settings
57 lines (50 loc) · 2.31 KB
/
outline.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
// true: default, outline is in sync with current file position
// false: no syncing, may be useful if use alphabetical sort
"outline_sync": true,
// when clicking on a symbol in the outline pane, how to highlight in the main view
// "cursor": put the cursor at the end of the symbol line
// "symbol": highlight the symbol in the main view
// "block": highlight the entire block between the current symbol and next symbol
"outline_main_view_highlight_mode": "symbol",
// true: outline view will use the same color scheme as current file
// false: outline will use its own color schemes (default or dark)
"outline_inherit_color_scheme": true,
// How should be positioned the Browse Mode view opened when jumping
// "left": the default, open the view on the left
// "right": open the view on the right
// true: take all space available
// false: don’t open any view
"outline_open_on_jump": "left",
// true: keep the active window if empty when jumping
// false: the default, always open a new window when jumping
"outline_smart_jump": false,
// Width for FileBrowser column (as sidebar) accepts float or int:
// float 0.1-0.9 put 1 is a window width, so e.g. 0.5 is half of window
// int e.g. 99 pixels, if value will be more than current window width
// then value will be treated as 0.9
"outline_width": 0.2,
// Automatically disable Vintageous to avoid keybindings incompatibilities;
// note it is Vintageous setting, if it does not work you should report into
// appropriate repository https://github.com/guillermooo/Vintageous/issues
"__vi_external_disable": true,
// The rest of these settings are normal sublime settings to
// make FileBrowser views look more like a file browser than an editor
// This plugin does not change font and font size, but it's
// highly recommended to customize them in your user files.
"color_scheme": "Packages/LaTeXOutline/outline.hidden-tmTheme",
"line_numbers": false,
"word_wrap": false,
"spell_check": false,
"scroll_past_end": false,
"draw_indent_guides": false,
"fold_buttons": false,
"drag_text": false,
"highlight_line": true,
"margin": 0,
"tab_size": 3,
"rulers": [],
"caret_extra_width": 0, // extra caret width causes partially hidden chars
// "font_face": "comic sans",
"font_size": 13,
}