Skip to content

Instantly share code, notes, and snippets.

@mrfratello
Last active March 12, 2018 11:29
Show Gist options
  • Save mrfratello/e9fd16929bc5814959c2e5c421f70f4a to your computer and use it in GitHub Desktop.
Save mrfratello/e9fd16929bc5814959c2e5c421f70f4a to your computer and use it in GitHub Desktop.
Packages for Sublime Text 3
{
// Show brackets in the minimap.
// Depending on your highlight style, regions may not be visible in minimap.
// "underline" won't show up due to it being a style consisting of
// multiple zero width selections to create a fat underline.
// But the following styles should show up fine as they are normal regions styles:
// - thin_underline
// - solid
// - outline
// - squiggly
// - stippled
"show_in_minimap": true,
// Enable high visibility by default when sublime starts up
// If sublime is already running and this gets changed,
// you will not see any changes (restart requrired to see change)
"high_visibility_enabled_by_default": true,
// High visibility style and color for high visibility mode
// (solid|outline|underline)
// ST3 has additional options of (thin_underline|squiggly|stippled)
"high_visibility_style": "stippled",
// (scope|__default__|__bracket__)
// "high_visibility_color": "brackethighlighter.highlight",
// Match brackets only when the cursor is touching the inside of the bracket
"match_only_adjacent": true,
// Ignore threshold
"ignore_threshold": true
}
/*
Markdown Preview default settings
*/
{
"browser": "default",
"enable_mathjax": true,
/*
Enable highlighting. This enables codehilite extension if not already enabled.
*/
"enable_highlight": false,
/*
Sets the default css file to embed in the HTML
default - Use the builtin CSS or github CSS, depending on parser config (markdown.css or github.css)
other - Set an absolute path or url to any css file
Should be an array, but will take a single string to support legacy convention.
*/
"css": ["~/.config/sublime-text-3/github-md.css"],
/*
Enable or not whether parsed files will be auto-reloaded on save
*/
"enable_autoreload": true
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>Bold and Italic Markers</string>
<key>scope</key>
<string>text.html.markdown</string>
<key>settings</key>
<dict>
<key>shellVariables</key>
<array>
<dict>
<key>name</key>
<string>MD_BOLD_MARKER</string>
<key>value</key>
<string>__</string>
</dict>
<dict>
<key>name</key>
<string>MD_BOLD_MARKER</string>
<key>value</key>
<string>**</string>
</dict>
<dict>
<key>name</key>
<string>MD_ITALIC_MARKER</string>
<key>value</key>
<string>_</string>
</dict>
<dict>
<key>name</key>
<string>MD_ITALIC_MARKER</string>
<key>value</key>
<string>*</string>
</dict>
</array>
</dict>
<key>uuid</key>
<string>E3F0F1B0-53C8-11E3-8F96-0800200C9A66</string>
</dict>
</plist>
{
"extensions":
[
"md",
"mdown",
"txt"
],
"wrap_width": 130,
// Line
"line_numbers": true,
"highlight_line": true
}
Package Control
BracketHighlighter
Color Highlighter
Dictionaries
DocBlockr
JsFormat
Markdown Preview
MarkdownEditing
Modific
TypeScript
Emmet
{
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"detect_indentation": false,
"dictionary": "Packages/Dictionaries/Russian.dic",
"draw_minimap_border": true,
"draw_white_space": "all",
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"trim_trailing_white_space_on_save": true,
"shift_tab_unindent": true,
"show_encoding": true,
"rulers": [100],
"translate_tabs_to_spaces": true,
"use_tab_stops": false,
"fallback_encoding": "Cyrillic (Windows 1251)"
}
@mrfratello
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment