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
58
59
60
61
62
63
64
65
66
67
68
69
| {
"bold_folder_labels": true,
"color_scheme": "Packages/Theme - One Dark/One Dark.tmTheme",
"debounce_delay": 10,
"default_line_ending": "unix",
"detect_indentation": false,
"draw_minimap_border": true,
"ensure_newline_at_eof_on_save": true,
"fade_fold_buttons": false,
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace",
".DS_Store"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
"venv",
".venv",
".idea",
"__pycache__",
".pytest_cache"
],
"font_face": "Source Code Pro",
"font_size": 16,
"highlight_line": true,
"hot_exit": true,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 1,
"line_padding_top": 2,
"rulers":
[
80,
100,
120
],
"save_on_focus_lost": true,
"scroll_past_end": true,
"show_encoding": true,
"theme": "One Dark.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true
}
|