* <li>P_NAVIGATION_SMART_HOME_END - false</li>
* </ul>
*
*/
public static void setDefaults(IPreferenceStore store) {
FormatterPreferences fPrefs = new FormatterPreferences();
store.setDefault(P_INSIGHT_DELAY,500);
store.setDefault(P_INSERT_SPACES_FOR_TABS,false);
store.setDefault(P_TAB_WIDTH,4);
store.setDefault(P_BRACKET_MATCHING_COLOR,"255,0,0");
store.setDefault(P_BRACKET_MATCHING_ENABLED,true);
store.setDefault(P_TAB_INDENTS_CURRENT_LINE,true);
store.setDefault(P_RTRIM_ON_SAVE,true);
store.setDefault(P_LINE_NUMBER_COLOR,"0,0,0");
store.setDefault(P_CURRENT_LINE_COLOR,"232,242,254");
store.setDefault(P_SHOW_PRINT_MARGIN,false);
store.setDefault(P_PRINT_MARGIN_SIZE,80);
store.setDefault(P_PRINT_MARGIN_COLOR,"176,180,185");
store.setDefault(P_SELECTION_FOREGROUND_COLOR,"255,255,255");
store.setDefault(P_SELECTION_BACKGROUND_COLOR,"10,36,106");
store.setDefault(P_COLOR_BACKGROUND,"255,255,255");
store.setDefault(P_SHOW_OVERVIEW_RULER,true);
store.setDefault(P_HIGHLIGHT_CURRENT_LINE,true);
store.setDefault(P_ENABLE_CUSTOM_CARETS,true);
store.setDefault(P_USE_WIDE_CARET,true);
store.setDefault(P_SELECTION_FOREGROUND_SYSTEM_DEFAULT,false);
store.setDefault(P_SELECTION_BACKGROUND_SYSTEM_DEFAULT,false);
store.setDefault(P_WARN_READ_ONLY_FILES,true);
store.setDefault(P_BRACKET_MATCHING_STYLE,BRACKET_MATCHING_BOLD);
store.setDefault(P_SHOW_EDITOR_TOOLBAR, false);
store.setDefault(P_NAVIGATION_SMART_HOME_END, false);
store.setDefault(FORMATTER_ALIGN, false);
store.setDefault(FORMATTER_MAX_LINE_LENGTH, 80);
store.setDefault(FORMATTER_WRAP_LONG, false);
store.setDefault(FORMATTER_CLOSE_TAGS, true);
store.setDefault(FORMATTER_IGNORED_TAGS, fPrefs.getIgnoredTags());
store.setDefault(FORMATTER_CLOSE_TAGS_LIST, fPrefs.getCloseTagsList());
store.setDefault(FORMATTER_CONDENSE_TAGS, true);
store.setDefault(TEMPLATES_USE_CODEFORMATTER, true);
store.setDefault(FORMATTER_FORMAT_SQL, false);
store.setDefault(FORMATTER_FORMAT_JS, false);