-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPreferences.sublime-settings
58 lines (52 loc) · 1.21 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
{
// Colors
"color_scheme": "Packages/User/SublimeLinter/Solarized-ocean (SL).tmTheme",
"theme": "Material-Theme-Lighter.sublime-theme",
// Font
// "font_face": "Ubuntu Mono",
"font_size": 10,
"font_options": ["subpixel_antialias", "no_bold"],
"line_padding_top": 0,
"line_padding_bottom": 0,
// Cursor style - no blinking and slightly wider than default
"caret_style": "solid",
"wide_caret": true,
// Others
"vintage_start_in_command_mode": true,
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"ensure_newline_at_eof_on_save": true,
"draw_white_space": "all",
// "fold_buttons": false,
"highlight_line": true,
"auto_complete": false,
"show_minimap": false,
"show_full_path": true,
// Editor
"scroll_past_end": false,
"highlight_modified_tabs": true,
"find_selected_text": true,
// Word wrapping - follow PEP 8 recommendations
// "rulers": [ 72, 79 ],
// "word_wrap": true,
// "wrap_width": 80,
// Exclusion
"ignored_packages":
[
"Vintage"
],
"file_exclude_patterns":
[
".DS_Store",
"*.pid",
"*.pyc",
"*.d",
"*.o",
],
"folder_exclude_patterns":
[
".git",
"__pycashe__",
],
}