forked from fredcallaway/sublime-markdown-editing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Markdown.sublime-settings
61 lines (50 loc) · 1.9 KB
/
Markdown.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
{
"extensions":
[
"md",
"mdown",
"txt"
],
"color_scheme": "Packages/MarkdownEditing/MarkdownEditor.tmTheme",
// "color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Dark.tmTheme",
// "color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Yellow.tmTheme",
// This is a quick and dirty focus theme. In order to make it work, you've to
// set `"highlight_line": true,` in this settings file. It is likely that there will
// be more mature focus improvements in the future (maybe similar to iA Writer).
// "color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Focus.tmTheme",
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": false,
"auto_match_enabled": true,
// Layout
"draw_centered": true,
"word_wrap": true,
"wrap_width": 80,
"rulers": [],
// Line
"line_numbers": false,
"highlight_line": false,
"line_padding_top": 2,
"line_padding_bottom": 2,
// Caret
"caret_style": "wide", // "wide" is deprecated starting with ST Build 3057.
// In the future, this line will be replaced with:
// "caret_style": "solid",
// "caret_extra_width": 1,
// These will work only in ST Build 3057 and later.
"caret_extra_top": 3,
"caret_extra_bottom": 3,
// add trailing #'s to headlines
"mde.match_header_hashes": false,
// Automatically switches list bullet when indenting blank list item with <Tab>.
"mde.list_indent_auto_switch_bullet": true,
// List bullets to be used for automatically switching. In their order.
"mde.list_indent_bullets": ["*", "-", "+"],
// Allways keep current line vertically centered.
"mde.keep_centered": false,
// Distraction free mode improvements. In order these to work, you have to install
// FullScreenStatus plugin: https://github.com/maliayas/SublimeText_FullScreenStatus
"mde.distraction_free_mode": {
"mde.keep_centered": true
}
}