Skip to content

Instantly share code, notes, and snippets.

@igodorogea
Last active October 9, 2017 11:44
Show Gist options
  • Save igodorogea/5700d4ffe37c13ffb2eb9783ad2639c7 to your computer and use it in GitHub Desktop.
Save igodorogea/5700d4ffe37c13ffb2eb9783ad2639c7 to your computer and use it in GitHub Desktop.
Sublime Text initial setup
  1. Install Sublime Text from here
  2. Install Package Control from here
  3. Install Material Theme and A File Icon
  4. Install additional plugins:
    • SideBarEnhancements
    • Emmet
    • Color Highlighter
    • Pretty JSON
    • Indent XML
    • TypoScript
    • TypeScript
[
{
"class": "tabset_control",
"layer0.tint": [44, 44, 44],
},
{
"class": "tab_label",
"font.size": 14
},
{
"class": "sidebar_heading",
"font.size": 15
},
{
"class": "sidebar_label",
"font.size": 14,
"font.bold": false
}
]
[
{ "keys": ["ctrl+k"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+alt+s"], "command": "save_all" },
]
{
"bold_folder_labels": true,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"font_face": "Fira Code",
"font_options":
[
"gray_antialias",
"subpixel_antialias"
],
"font_size": 13,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 3,
"line_padding_top": 3,
"overlay_scroll_bars": "enabled",
"theme": "Material-Theme-Darker.sublime-theme",
"word_wrap": "true",
"preview_on_click": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment