Use Sublime Themes. Monokai is the default theme. You can download any topic that interests you (for example, from this site: http://devthemez.com/themes/sublime-text-2 ) and install it. Sublime Text 2 themes mostly work for version 3.
First install Package Control . Instructions: https://sublime.wbond.net/installation . It's simple:
- press Ctrl + `
- insert a line and press
Enter .
Then clone the repository with the theme you need (you need to install some version control system, usually Git). In terminal:
- Linux: cd ~ / .config / sublime-text-3 / Packages
- Mac: cd ~ / Library / Application Support / High Text 3 / Packages
- Windows: cd% appdata% \ Sublime Text 3 \ Packages
If the repository is on GitHub, use git: (example with the Argonaut theme from devthemez.com, link below)
git clone git://github.com/pwaleczek/Argonaut.git 'Theme - Argonaut'
Then the last step: In Sublime, open "Settings" → "Settings-User" and insert the appropriate code provided by the theme developer: (again, an example for the Argonaut theme)
{ "theme": "Argonaut.sublime-theme", "color_scheme": "Packages/Theme - Argonaut/Argonaut.tmTheme" }
Examples were for the Argonaut theme: https://github.com/pwaleczek/Argonaut (this page also contains some instructions for installation).
source share