forked from ttscoff/MarkdownEditing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MultiMarkdown.sublime-settings
42 lines (34 loc) · 1.11 KB
/
MultiMarkdown.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
{
"extensions":
[
"mmd"
],
"font_face": "Menlo",
"font_options": [ "subpixel_antialias", "no_round", "directwrite"],
"color_scheme": "Packages/MarkdownEditing/MarkdownEditor.tmTheme",
// "color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Dark.tmTheme",
// "color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Yellow.tmTheme",
// "color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Focus.tmTheme",
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": false,
"draw_centered": true,
"word_wrap": true,
"wrap_width": 80,
"rulers": [],
"line_numbers": false,
"highlight_line": true,
"line_padding_top": 2,
"line_padding_bottom": 2,
"caret_style": "wide",
"auto_match_enabled": true,
// add trailing #'s to headlines
"match_header_hashes": false,
// Allways keep current line vertically centered.
"me_keep_centered": false,
// Distraction free mode improvements. In order these to work, you have to install
// FullScreenStatus plugin: https://github.com/maliayas/SublimeText_FullScreenStatus
"me_distraction_free_mode": {
"me_keep_centered": true
}
}