7 Feb 2026
Sublime Text
switching from vscode
Installation
- Install Sublime Text
- Install Package Control to manage packages (aka plugins…)
- Open command palette
ctrl shift p/cmd shift p Install Package Control
- Open command palette
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
Package Control: Install Package- Search for theme name and install
- Activate with
UI: Select Color Scheme - Go
UI: Select Themeand selectAdaptiveto match the UI
UI size
- Open settings
Preferences.sublime-settings - Create
Packages/User/Adaptive.sublime-theme- Note: this depends on having selected
Adaptivetheme when editing the colour theme above
- Note: this depends on having selected
- Add:
{
"variables": {
"font_size_sm": 15,
"font_size": 16,
"font_size_lg": 18,
}
}
Keyboard Shortcuts / Key Bindings
- Preferences > Key Bindings
- Add:
[
{ "keys": ["alt+z"],
"command": "toggle_setting",
"args": {
"setting": "word_wrap"
}
}
]