Skip to content

Instantly share code, notes, and snippets.

@tacensi
Last active November 25, 2018 19:37
Show Gist options
  • Save tacensi/6041847 to your computer and use it in GitHub Desktop.
Save tacensi/6041847 to your computer and use it in GitHub Desktop.
My Sublime Text configuration file
// Settings in here override those in "Default/Preferences.sublime-settings", and
// are overridden in turn by file type specific settings.
{
"auto_complete_commit_on_tab": true,
"auto_indent": true,
"bold_folder_labels": true,
"caret_style": "phase",
"create_window_at_startup": false,
"draw_indent_guides": true,
"draw_minimap_border": true,
"draw_white_space": "selection",
"default_encoding": "UTF-8",
"detect_indentation": true,
"ensure_newline_at_eof_on_save": true,
"fade_fold_buttons": true,
"find_selected_text": true,
"file_exclude_patterns":
[
".DS_Store"
],
"folder_exclude_patterns":
[
"bin",
".bundle",
".git",
".sass-cache",
"tmp"
],
"fold_buttons": true,
"font_face": "Ubuntu Mono",
"font_size": 15,
"font_options": [
"subpixel_antialias"
],
"highlight_line": true,
"highlight_modified_tabs": true,
"indent_guide_options": ["draw_active"],
"line_padding_bottom": 5,
"line_padding_top": 5,
"match_brackets_content": true,
"match_tags": true,
"save_on_focus_lost": true,
"scroll_past_end": true,
"sublimelinter": true,
"sublimelinter_gutter_marks": true,
"sublimelinter_fill_outlines": false,
"rulers": [80],
"tab_size": 4,
"translate_tabs_to_spaces": false,
"trim_trailing_white_space_on_save": true,
"use_tab_stops": true,
// "wide_caret": true,
"word_separators": "./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?",
"word_wrap": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment