Skip to content

Instantly share code, notes, and snippets.

@tohuw
Last active October 7, 2016 18:08
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save tohuw/fb5475dfaf6d5ba219a2 to your computer and use it in GitHub Desktop.
My Sublime Text 3 Config
{
"auto_complete_commit_on_tab": true,
"auto_complete_delay": 500,
"auto_indent": true,
"auto_match_enabled": true,
"binary_file_patterns":
[
"*.woff",
"*.eot",
"*.ttf",
"*.svg",
"*.sublime-*"
],
"caret_style": "phase",
"close_windows_when_empty": false,
"color_scheme": "Packages/Colorsublime - Themes/Eiffel.tmTheme",
"copy_with_empty_selection": false,
"default_line_ending": "unix",
"detect_indentation": true,
"dictionary": "Packages/Language - English/en_US.dic",
"draw_centered": false,
"draw_minimap_border": false,
"draw_white_space": "selection",
"ensure_newline_at_eof_on_save": true,
"fallback_encoding": "utf-8",
"file_exclude_patterns":
[
"*.pyc",
".DS_Store"
],
"find_selected_text": true,
"folder_exclude_patterns":
[
".git"
],
"font_face": "Monaco",
"font_options": "subpixel_antialias",
"font_size": 12.5,
"gutter": true,
"highlight_line": true,
"hot_exit": false,
"ignored_packages":
[
"Vintage"
],
"indent_subsequent_lines": true,
"line_numbers": true,
"line_padding_bottom": 1,
"line_padding_top": 0,
"match_brackets": true,
"match_brackets_angle": true,
"match_brackets_braces": true,
"match_brackets_content": true,
"match_brackets_square": true,
"mouse_wheel_switches_tabs": true,
"open_files_in_new_window": false,
"paths":
{
"osx":
[
"~/.virtualenvs/pelican/bin/",
"~/.rbenv/shims",
"/usr/local/bin/"
]
},
"preview_on_click": true,
"remember_open_files": true,
"rulers":
[
80
],
"save_on_focus_lost": false,
"scroll_past_end": false,
"scroll_speed": 1,
"shift_tab_unindent": true,
"show_full_path": false,
"show_tab_close_buttons": true,
"soda_folder_icons": true,
"spell_check": false,
"tab_completion": true,
"tab_size": 4,
"theme": "Soda Light.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": true,
"trim_trailing_white_space_on_save": true,
"use_tab_stops": true,
"word_separators":
[
"\"",
" ",
"_"
],
"word_wrap": true,
"wrap_width": 0
}
@tohuw
Copy link
Author

tohuw commented Aug 2, 2014

After reading on the best practice of ending in a newline, I capitulated!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment