DEV Community

Discussion on: My Sublime Text Setup for PHP

Collapse
 
dev_nope profile image
Vasile Stefirta πŸ‡²πŸ‡© ✈️ πŸ‡ΊπŸ‡Έ • Edited

Hey Andrew,

Great article! πŸ‘ I've been using sublime for a few years now and I really love it. Here are my user settings:

{
    "always_show_minimap_viewport": true,
    "bold_folder_labels": true,
    "color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
    "font_face": "Source Code Pro Light",
    "font_size": 15,
    "ignored_packages":
    [
        "Vintage"
    ],
    "indent_guide_options":
    [
        "draw_normal",
        "draw_active"
    ],
    "line_padding_bottom": 5,
    "line_padding_top": 5,
    "overlay_scroll_bars": "enabled",
    "theme": "Material-Theme-Darker.sublime-theme",
    "translate_tabs_to_spaces": true,
    "tab_size": 4,
    "word_wrap": "false"
}

I really love the Material Theme in combination with the Source Code Pro Light font. Also, here are a few more packages I can recommend:

Collapse
 
restoreddev profile image
Andrew Davis

Definitely will check out the DotEnv extensions. Thanks for sharing your setup!