Sublime-text
Prerequisites
Source Code Pro Font should be installed as described in Essentials section.
Install
# if you haven't already installed sublime-text, run:
brew install --cask --appdir=~/Applications sublime-textInstall Package Control
Open the
ToolsmenuSelect
Install Package Control…You will get messagePackage Control was successfully installed
Use the Command Palette and type Install Package to install any of the following packages.
To list installed packages: Preferences -> Package Control -> List Packages
Recommended Plugins
Go to Sublime and do CMD + Shift + P
Type install and select Package Control: Install Package
Install the packages listed below:
Theme - Soda
SCSS
Markdown Preview
Monokai Extended
TypeScript
Go to Preferences -> Select Theme... and pick Soda Light 3 or any other theme you like.
Customization
Go to Preferences -> Settings and copy and paste following JSON in Right Panel
Note: you can use my user preferences
{
  "bold_folder_labels": true,
  "color_scheme": "Packages/Monokai Extended/Monokai Extended.tmTheme",
  "font_face": "Consolas",
  "font_size": 14,
  "highlight_line": true,
  "highlight_modified_tabs": true,
  "ignored_packages": ["Vintage"],
  "indent_to_bracket": true,
  "rulers": [79],
  "tab_size": 2,
  "translate_tabs_to_spaces": true,
  "word_wrap": false
}Last updated
Was this helpful?