Last active
July 7, 2017 16:54
-
-
Save ucaiado/a258a4bc14086f66072d to your computer and use it in GitHub Desktop.
Sublime Configurations
This file contains 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
[ | |
{ "keys": ["alt+m"], "command": "markdown_preview", "args": {"target": "browser", "parser":"markdown"} } | |
] |
This file contains 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
{ | |
"extensions": | |
[ | |
"md", | |
"txt", | |
"mdown" | |
], | |
"color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Dark.tmTheme", | |
"highlight_line": true, | |
"line_numbers": true, | |
"draw_centered": false, | |
} |
This file contains 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
{ | |
"auto_complete": false, | |
"caret_style": "solid", | |
"color_scheme": "Packages/User/SublimeLinter/Tomorrow-Night (SL).tmTheme", | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
".DS_Store", | |
"*.pid", | |
"*.pyc" | |
], | |
"find_selected_text": true, | |
"fold_buttons": false, | |
"folder_exclude_patterns": | |
[ | |
".git", | |
"__pycache__", | |
"env", | |
"env3" | |
], | |
"font_size": 8, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"rulers": | |
[ | |
72, | |
80 | |
], | |
"scroll_past_end": false, | |
"show_full_path": true, | |
"show_minimap": false, | |
"tab_size": 4, | |
"theme": "Soda Dark.sublime-theme", | |
"translate_tabs_to_spaces": false, | |
"trim_trailing_white_space_on_save": true, | |
"wide_caret": true, | |
"word_wrap": true | |
} |
This file contains 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
{ | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"font_size": 10, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"soda_folder_icons": true, | |
"tab_size": 4, | |
"theme": "Soda Dark.sublime-theme", | |
"translate_tabs_to_spaces": true | |
} |
This file contains 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
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"All Autocomplete", | |
"Markdown Preview", | |
"MarkdownEditing", | |
"Package Control", | |
"SideBarEnhancements", | |
"Sublime JS", | |
"SublimeCodeIntel", | |
"sublimelint", | |
"SublimeLinter", | |
"SublimeLinter-annotations", | |
"SublimeLinter-csslint", | |
"SublimeLinter-pep8", | |
"Theme - Soda", | |
"Theme - Soda SolarizedDark", | |
"Tomorrow Color Schemes" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment