-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPreferences.sublime-settings
103 lines (94 loc) · 2 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/base16-ocean.dark (SL).tmTheme",
"theme": "Spacegray.sublime-theme",
// "font_face": "Monaco",
"font_size": 16,
"line_padding_bottom": 1,
"line_padding_top": 1,
"margin": -1,
"default_encoding": "UTF-8",
"default_line_ending": "unix",
"detect_indentation": false,
"drag_text": false,
"draw_minimap_border": true,
"draw_white_space": "all",
"fade_fold_buttons": false,
"find_selected_text": true,
"highlight_line": true,
"highlight_modified_tabs": true,
"open_files_in_new_window": false,
"show_encoding": true,
"show_line_endings": true,
"shift_tab_unindent": true,
"tab_size": 4,
"translate_tabs_to_spaces": true,
"ensure_newline_at_eof_on_save": true,
"trailing_spaces_include_current_line": false,
"trim_trailing_white_space_on_save": true,
"word_separators": "./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?_",
"word_wrap": true,
"wrap_width": 120,
"file_exclude_patterns":
[
".DS_Store",
"Desktop.ini",
"*.pyc",
"._*",
"Thumbs.db",
".Spotlight-V100",
".Trashes",
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace"
],
"folder_exclude_patterns":
[
"node_modules",
".idea",
".svn",
".git",
".hg",
"CVS"
],
"binary_file_patterns":
[
"generated/*",
"*.tbz2",
"*.gzip",
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip"
],
"ignored_packages":
[
"Vintage"
]
}