- Install Sublime Text from here
- Install Package Control from here
- Install Material Theme and A File Icon
- Install additional plugins:
- SideBarEnhancements
- Emmet
- Color Highlighter
- Pretty JSON
- Indent XML
- TypoScript
- TypeScript
Last active
October 9, 2017 11:44
-
-
Save igodorogea/5700d4ffe37c13ffb2eb9783ad2639c7 to your computer and use it in GitHub Desktop.
Sublime Text initial setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ | |
"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 | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": ["ctrl+k"], "command": "toggle_side_bar" }, | |
{ "keys": ["ctrl+alt+s"], "command": "save_all" }, | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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