Sublime Text

switching from vscode

Installation

  1. Install Sublime Text
  2. Install Package Control to manage packages (aka plugins…)
    • Open command palette ctrl shift p / cmd shift p
    • Install Package Control

most, if not all, stuff done via command palette

Settings

General

In Preferences.sublime-settings

{
"font_size": 18,
"tab_size": 2,
"scroll_past_end": true,
"auto_complete": false,
}

Colour theme

  1. Package Control: Install Package
  2. Search for theme name and install
  3. Activate with UI: Select Color Scheme
  4. Go UI: Select Theme and select Adaptive to match the UI

UI size

  1. Open settings Preferences.sublime-settings
  2. Create Packages/User/Adaptive.sublime-theme
    • Note: this depends on having selected Adaptive theme when editing the colour theme above
  3. Add:
{
"variables":
{
"font_size_sm": 15,
"font_size": 16,
"font_size_lg": 18,
}
}