Polycademy's preferred Sublime Configuration.
Place Notepad++.tmTheme into the Packages location. This can be accessed via Preferences -> Browse Packages
Actually I've changed:
- For day time - iPlastic
- For night time - Cobalt
Acquire the Source Code Pro font and install it into your computer: (https://github.com/adobe-fonts/source-code-pro)
Acquire the Anonymous Pro font and install it into your computer: (http://www.marksimonson.com/fonts/view/anonymous-pro)
Anonymous Pro Font is better.
Install Sublime Text 3 Package Control (https://sublime.wbond.net/installation)
Hit Ctrl + Shift + P
and use Package Control to install these packages:
BracketHighlighter
DocBlockr
Emmet
Phoenix Theme
SublimeLinter3
Floobits
MarkdownEditing
SublimeTableEditor
Open-Url
GitSavvy
SublimeREPL
Nginx
Elm
Elixir
GoSublime
LESS
AngularJS
Nix
Rust
Toml
Mercury (requires manual copy paste into packages directory with "Mercury" as folder name)
Copy paste the contents of Preferences.sublime-settings into your user settings. This can be accessed via Preferences -> Settings - User
Sublime Text Editor does not normally highlight the syntax of HTML that inside client side template script tags. For example AngularJS and Handlebars.
In order to make Sublime run syntax highlighting, first find the HTML.sublime-package zip archive. This is usually located where Sublime was installed. Copy this archive somewhere else and unzip. Open up HTML.tmLanguage file. On line 286 change:
<string>(?:^\s+)?(<)((?i:script))\b(?![^>]*/>)</string>
into
<string>(?:^\s+)?(<)((?i:script))\b(?![^>]*/>)(?!.*type=["']text/(template|html|ng-template)['"])</string>
This makes Sublime support text/template, text/html and text/ng-template.
You can also download the HTML.sublime-package file and replace the one found inside your installation. Make sure to backup the old one before doing so.
This is for Github Flavored Markdown:
{
"extensions": [
"mdown",
"txt",
"md"
],
"font_options": [
"subpixel_antialias",
"directwrite"
],
"color_scheme": "Packages/MarkdownEditing/MarkdownEditor.tmTheme",
"draw_centered": false,
"word_wrap": true,
"wrap_width": false,
"line_numbers": true,
"highlight_line": true
}
Restart Sublime Text Editor!