Skip to content

Instantly share code, notes, and snippets.

@zmiftah
Last active June 15, 2017 05:58
Show Gist options
  • Save zmiftah/9c631e0c9ddf54db1a1811afc0c1a09f to your computer and use it in GitHub Desktop.
Save zmiftah/9c631e0c9ddf54db1a1811afc0c1a09f to your computer and use it in GitHub Desktop.
List of SublimeText 3 Plugins and Settings

Sublime Install

  • Git
  • GitGutter
  • GitStatusBar
  • SidebarEnhancement
  • SublimeLinter
  • SublimeLinter-php

Theme

{
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"color_scheme": "Packages/ayu/ayu-mirage.tmTheme",
"extra_folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
"/mnt/appfinance/vendor/"
],
"font_face": "Source Code Pro",
"font_options":
[
"gray_antialias",
"subpixel_antialias"
],
"font_size": 12,
"highlight_line": true,
"ignored_packages":
[
"Phpcs",
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 3,
"line_padding_top": 3,
"overlay_scroll_bars": "enabled",
"theme": "ayu-mirage.sublime-theme",
"ui_separator": false, // separators between panels
"ui_font_size_small": true, // smaller UI font size(sidebar, statusbar etc)
"ui_big_tabs": true, // increased tab height
"ui_fix_tab_labels": true, // to fix tab labels if they look not right
"ui_font_source_code_pro": true, // use [Source Code Pro](https://fonts.google.com/specimen/Source+Code+Pro) for UI
"ui_wide_scrollbars": true, // wider scrollbars
"ui_sidebar_highlight_row": true // to highlight whole row for current item in sidebar
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment