Skip to content

Instantly share code, notes, and snippets.

@purwandi
Last active February 10, 2016 03:22
Show Gist options
  • Save purwandi/d828c808b4a141ce6ac9 to your computer and use it in GitHub Desktop.
Save purwandi/d828c808b4a141ce6ac9 to your computer and use it in GitHub Desktop.
My Sublime Text Installed Packages
  1. DockBlockr
  2. EditorConfig
  3. GitGutter
  4. Inspired GitHub Color Schema
  5. Laravel Blade Highlighter
  6. Package Control
  7. phpfmt
  8. SideBarEnhancments
  9. Syntax Highlighting fo Sass
  10. Theme - Piatto
  11. Vue Syntax Highlighting
My sublime config
{
	"always_show_minimap_viewport": true,
	"bold_folder_labels": true,
	"color_scheme": "Packages/Inspired GitHub Color Scheme/InspiredGitHub.tmTheme",
	"font_face": "Consolas",
	"font_size": 13,
	"ignored_packages":
	[
		"Vintage"
	],
	"indent_guide_options":
	[
		"draw_normal",
		"draw_active"
	],
	"line_padding_bottom": 2,
	"line_padding_top": 2,
	"overlay_scroll_bars": "enabled",
	"theme": "Piatto Light 3.sublime-theme"
}

phpfmt config
{
	"default_line_ending": "unix",
	"ensure_newline_at_eof_on_save": true,
	"format_on_save": true,
	"passes":
	[
		"AlignDoubleArrow",
		"AlignEquals",
		"ShortArray",
		"AlignGroupDoubleArrow",
		"MergeElseIf",
		"AlignPHPCode",
		"AutoSemicolon",
		"OrganizeClass"
	],
	"php_bin": "/usr/local/php5/bin/php",
	"psr1": true,
	"psr1_naming": true,
	"psr2": true,
	"rulers":
	[
		80,
		120
	],
	"tab_size": 4,
	"translate_tabs_to_spaces": true,
	"trim_trailing_white_space_on_save": true,
	"version": 1,
	"word_wrap": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment