Last active
January 1, 2016 16:39
-
-
Save dmcclintock/8172133 to your computer and use it in GitHub Desktop.
Sublime Text 3 - Custom User Settings
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
<dict> | |
<key>name</key> | |
<string>Text base</string> | |
<key>scope</key> | |
<string>text</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#2c2f39</string> | |
<key>foreground</key> | |
<string>#d8d8d8</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Source base</string> | |
<key>scope</key> | |
<string>source</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#272a32</string> | |
<key>foreground</key> | |
<string>#d8d8d8</string> | |
</dict> | |
</dict> | |
<!-- | |
== Media Queries: == | |
<string>String</string> | |
--> |
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
{ | |
"always_show_minimap_viewport": false, | |
"binary_file_patterns": | |
[ | |
"*.jpg", | |
"*.jpeg", | |
"*.png", | |
"*.gif", | |
"*.ttf", | |
"*.tga", | |
"*.dds", | |
"*.ico", | |
"*.eot", | |
"*.pdf", | |
"*.swf", | |
"*.jar", | |
"*.zip" | |
], | |
"bold_folder_labels": false, | |
"caret_extra_bottom": 0, | |
"caret_extra_top": 0, | |
"caret_extra_width": 1, | |
"caret_style": "phase", | |
"close_windows_when_empty": false, | |
"create_window_at_startup": false, | |
"draw_minimap_border": false, | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
// Defaults | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", | |
"*.o", | |
"*.a", | |
"*.lib", | |
"*.so", | |
"*.dylib", | |
"*.ncb", | |
"*.sdf", | |
"*.suo", | |
"*.pdb", | |
"*.idb", | |
".DS_Store", | |
"*.class", | |
"*.psd", | |
"*.db", | |
"*.sublime-workspace", | |
// Custom | |
".bowerrc", | |
"bower.json", | |
"Gruntfile.js", | |
"package.json" | |
], | |
"find_selected_text": true, | |
"fold_buttons": false, | |
"folder_exclude_patterns": | |
[ | |
// Defaults | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
// Custom | |
"node_modules", | |
"source_files", | |
"bower_components", | |
".sass-cache" | |
], | |
"font_face": "Menlo", | |
"font_size": 11, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage", | |
"Markdown", | |
"FileHeader" | |
], | |
"indent_guide_options": | |
[ | |
"draw_active" | |
], | |
"margin": 0, | |
"match_brackets_angle": true, | |
"move_to_limit_on_up_down": false, | |
"open_files_in_new_window": false, | |
"scroll_past_end": true, | |
"show_full_path": true, | |
"tab_size": 2, | |
"trim_trailing_white_space_on_save": true, | |
"use_simple_full_screen": true, | |
"word_wrap": true, | |
/*============================================== | |
= Themes & Color Schemes = | |
==============================================*/ | |
"theme": "itg.flat.dark.acc.sublime-theme", | |
// "color_scheme": "Packages/User/aCC_DS/theme-acc-itg-flat/itg.dark.acc.tmTheme", | |
"color_scheme": "Packages/User/aCC_DS/aCC-phoenix-dark.tmTheme", | |
// See: <http://colorsublime.com/> | |
/*========== itg.flat Theme ==========*/ | |
// "theme": "itg.flat.dark.sublime-theme", | |
"itg_small_tabs": true, | |
"itg_sidebar_tree_large": true, | |
"itg_scrollbar_small": true, | |
// "color_scheme": "Packages/Theme - itg.flat/itg.dark.tmTheme", | |
// "overlay_scroll_bars": "disabled" | |
// "theme": "itg.flat.dark.orange.sublime-theme", | |
// "theme": "itg.flat.dark.aqua.sublime-theme", | |
// "theme": "itg.flat.dark.blue.sublime-theme", | |
// "theme": "itg.flat.dark.green.sublime-theme", | |
// "theme": "itg.flat.dark.yellow.sublime-theme", | |
// "color_scheme": "Packages/Theme - itg.flat/itg.light.tmTheme", | |
// "itg_sidebar_tree_small": true, | |
// "itg_sidebar_tree_medium": true, | |
/*========== Phoneix Theme ==========*/ | |
// "theme": "Phoenix Dark.sublime-theme", | |
// "phoenix_color_expanded_folder": true, | |
// "phoenix_color_orange": true, | |
// "phoenix_dirty_bottom_bar": true, | |
// "phoenix_dirty_bottom_bar_orange": true, | |
// "phoenix_highlight_current_tab": true, | |
// "phoenix_sidebar_tree_med": true, | |
// "phoenix_tabs_auto_width": true, | |
// "phoenix_tabs_font_large": true, | |
// "phoenix_tabs_large": true, | |
// "rulers": [80] | |
} |
Resources:
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment