Created
November 14, 2018 03:26
-
-
Save felix-orduz/c3bfe6525ac18485387f9a852ce06571 to your computer and use it in GitHub Desktop.
Configuracion personalizada de: https://github.com/SublimeText-Markdown/MarkdownEditing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "extensions": | |
| [ | |
| "md", | |
| "mdown" | |
| ], | |
| "color_scheme": "Packages/User/ME-MonokaiC.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": true, | |
| "highlight_line": true, | |
| "line_padding_top": 2, | |
| "line_padding_bottom": 2, | |
| // Caret | |
| "caret_style": "solid", | |
| "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": ["*", "-", "+"], | |
| // Auto increments ordered list number. Set to false if you want always "1". | |
| "mde.auto_increment_ordered_list_number": true, | |
| // Always keep current line vertically centered. | |
| "mde.keep_centered": false, | |
| // Distraction free mode improvements. In order for these to work, you have to install | |
| // FullScreenStatus plugin: https://github.com/maliayas/SublimeText_FullScreenStatus | |
| "mde.distraction_free_mode": { | |
| "mde.keep_centered": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment