Last active
August 29, 2015 13:56
-
-
Save robhawkes/9288551 to your computer and use it in GitHub Desktop.
Sublime Text preferences
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
Show hidden characters
{ | |
"installed_packages": | |
[ | |
"Alignment", | |
"Base16 Color Schemes", | |
"ColorPicker", | |
"GitGutter", | |
"Gutter Color", | |
"HTML-CSS-JS Prettify", | |
"InactivePanes", | |
"Inc-Dec-Value", | |
"MaxPane", | |
"Monokai Extended", | |
"Pane Resizer", | |
"Pretty JSON", | |
"SideBarEnhancements", | |
"SublimeCodeIntel", | |
"SublimeLinter", | |
"SublimeLinter-annotations", | |
"SublimeLinter-jshint", | |
"Syntax Highlighting for Sass", | |
"Theme - Soda", | |
"Theme - Spacegray" | |
] | |
} |
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_indent": true, | |
"auto_match_enabled": true, | |
"bold_folder_labels": false, | |
"color_scheme": "Packages/User/base16-twilight.dark (SL).tmTheme", | |
"draw_minimap_border": true, | |
"fade_fold_buttons": false, | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", | |
"*.o", | |
"*.a", | |
"*.lib", | |
"*.so", | |
"*.dylib", | |
"*.ncb", | |
"*.sdf", | |
"*.suo", | |
"*.sassc", | |
"*.scssc", | |
"*.pdb", | |
"*.idb", | |
".DS_Store", | |
"*.class", | |
"*.psd", | |
"*.db", | |
"*.sublime-project", | |
"*.sublime-workspace", | |
"*.htaccess", | |
"*.gem", | |
"*.gz", | |
"*.jar", | |
"*.log", | |
"*.psd", | |
"*.xap", | |
"*.zip" | |
], | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
".sass-cache", | |
".bin" | |
], | |
"font_face": "InputMono Thin", | |
"font_size": 17, | |
"gutter": true, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"indent_subsequent_lines": true, | |
"indent_to_bracket": true, | |
"line_padding_bottom": 3, | |
"line_padding_top": 3, | |
"rulers": | |
[ | |
80 | |
], | |
"scroll_past_end": true, | |
"show_tab_close_buttons": true, | |
"smart_indent": true, | |
"spell_check": false, | |
"tab_completion": true, | |
"tab_size": 2, | |
"theme": "Spacegray Eighties.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_automatic_white_space": true, | |
"use_simple_full_screen_mode": true, | |
"word_separators": "./\\()\"':,.;<>~!@#$%^&*|+=[]{}`~?-", | |
"word_wrap": true, | |
"wrap_width": 80 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment