Skip to content

Instantly share code, notes, and snippets.

@Adriench
Last active January 24, 2017 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Adriench/30bda3ba0b16c677ec87 to your computer and use it in GitHub Desktop.
Save Adriench/30bda3ba0b16c677ec87 to your computer and use it in GitHub Desktop.
Sublime Text 3 - Config Files

Sublime Text 3 - Config files

List of packages
  • Alignment
  • AngularJS
  • BracketHighlighter
  • ColorHiglighter
  • CSS3 Syntax
  • DocBlockr
  • Emmet
  • Gist
  • Minifier
  • GutterColor // Needs ImageMagick
  • JavaScriptNext
  • Sass
  • Seti_UI
  • SidebarEnhancement
  • Theme Flatland
  • PHPTwig
{
"draw_centered": true,
"draw_indent_guides": false,
"trim_trailing_white_space_on_save": false,
"word_wrap": true,
"wrap_width": 80
}
{
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"caret_extra_bottom": 2,
"caret_extra_top": 2,
"caret_extra_width": 1,
"close_windows_when_empty": true,
"color_inactive_tabs": true,
"color_scheme": "Packages/Colorsublime - Themes/Smyck.tmTheme",
"copy_with_empty_selection": false,
"default_encoding": "UTF-8",
"detect_indentation": true,
"drag_text": false,
"enable_tab_scrolling": false,
"file_exclude_patterns":
[
".*",
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db"
],
"find_selected_text": true,
"folder_exclude_patterns":
[
".git",
".bundle",
".sass-cache",
".svn"
],
"font_face": "Roboto Mono",
"font_size": 13,
"highlight_line": true,
"highlight_modified_tabs": false,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 3,
"line_padding_top": 3,
"match_brackets": true,
"match_brackets_angle": true,
"match_brackets_braces": true,
"match_brackets_content": true,
"match_brackets_square": true,
"material_theme_compact_panel": true,
"material_theme_compact_sidebar": true,
"material_theme_disable_folder_animation": true,
"material_theme_small_statusbar": true,
"material_theme_small_tab": true,
"mouse_wheel_tabswitch": true,
"open_files_in_new_window": false,
"overlay_scroll_bars": "enabled",
"preview_on_click": false,
"rulers":
[
80
],
"scroll_past_end": true,
"scroll_speed": 5.0,
"show_full_path": true,
"sidebar_row_padding_default": true,
"tab_completion": false,
"tabs_padding_small": true,
"tabs_small": true,
"theme": "Material-Theme-Darker.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": true,
"trim_trailing_white_space_on_save": true,
"wide_caret": true,
"word_wrap": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment