Skip to content

Commit

Permalink
AcademicMarkdown extensions to MarkdownEditing ST3 plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
mangecoeur committed Jan 30, 2014
0 parents commit 020a4e6
Show file tree
Hide file tree
Showing 4 changed files with 3,131 additions and 0 deletions.
55 changes: 55 additions & 0 deletions AcademicMarkdown.sublime-settings
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"extensions":
[
"md"
],

"color_scheme": "Packages/AcademicMarkdown/AcademicMarkdownEditor.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",
"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
}
}
Loading

0 comments on commit 020a4e6

Please sign in to comment.