Sublime Fresh Start
Do you want to have this setup for your sublime text?

Installation
1. Install Your Sublime
Install your sublime text by downloading thru this link: https://www.sublimetext.com/3.
2. Enable Package Control
Once you install your Sublime Text, enable your *Package Control*! You can enable them by following this link: https://packagecontrol.io/installation.
3. Install Material Theme
- Go to `Preferences > Package Control`. (Wait until a window of Package Control shows up)
- Choose `Package Control: Install Package`. (Wait!)
- Type `Material Theme`, then click it.
- Wait until all process installation complete.
4. Extra Packages (Optional)
Next to beautify and make your programming step easier, you can install these packages: (You can follow third step to install them)
- Material Color Scheme (Material color scheme).
- AdvancedNewFile (easly create new file by keyboard shortcut, window+alt+N on Linux).
- BracketHighlighter (Show closing/opening bracket for each bracket the pointer standing at).
- Alignment (Keep the code aligned).
- AutoFileName (Suggest fileName when pressing tab button inside double quote).
- Emmet (Giving suggestion and/or completing when pressing tab key / ctrl+e).
- HTMLBeautify (Beautifying HTML tags).
- Laraver Blade Highlighter (Highlighting when typing blade template file).
- LESS (Beautifying by color when editing LESS file).
- PHPDoc (Beautifying PHPDoc).
5. Set the Setting
- Go to `Preferences > Settings`. (There will be 2 columns of windows, left and right).
- Copy this setting onto that right column:
{
"auto_close_tags": false,
"auto_complete": true,
"auto_complete_triggers": false,
"auto_match_enabled": false,
"bold_folder_labels": true,
"caret_extra_bottom": 2,
"caret_extra_top": 2,
"caret_extra_width": 3,
"caret_style": "phase",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"font_size": 8,
"highlight_line": true,
"highlight_modified_tabs": true,
"translate_tabs_to_spaces": true,
"ignored_packages":
[
"Babel Snippets",
"Minify",
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 4,
"line_padding_top": 4,
"material_theme_accent_bright-teal": true,
"material_theme_big_fileicons": true,
"material_theme_small_tab": true,
"tab_completion": false,
"tab_size": 4,
"theme": "Material-Theme.sublime-theme",
"wide_caret": true,
"word_wrap": false,
"rulers": [80, 120]
}
- Save it. (or press `ctrl+s`)