#Pre (language) syntax package for Sublime Text 2 Provides syntax highlighting for `.pre` files and support for comment-toggle commands. ##Installing **With the Package Control plugin:** The easiest way to install this package is through Package Control, which can be found at this site: [http://wbond.net/sublime_packages/package_control](http://wbond.net/sublime_packages/package_control) Once you install Package Control, restart ST2 and bring up the Command Palette (Command+Shift+p on OS X, Control+Shift+p on Linux/Windows). Select "Package Control: Install Package", wait while Package Control fetches the latest package list, then select `pre` when the list appears. **Without Git:** Download the latest source zip from [github](https://github.com/jonschlinkert/pre-sublime/zipball/master) and extract the files to your Sublime Text "Packages" directory, into a new directory named `pre`. **With Git:** Clone the repository in your Sublime Text "Packages" directory: git clone git://github.com/jonschlinkert/pre-sublime.git pre The "Packages" directory is located at: * OS X: `~/Library/Application Support/Sublime Text 2/Packages/` * Linux: `~/.Sublime Text 2/Packages/` * Windows: `%APPDATA%/Sublime Text 2/Packages/` ## Color Scheme Some snippets to use in your favorite `.tmTheme` file. ```xml name css.id scope meta.selector.css entity.other.attribute-name.id settings foreground #E5D56D name css.class scope entity.other.attribute-name.class settings foreground #A0C25F name pre.mixin scope entity.other.pre.mixin settings foreground #98E124 name css.element scope keyword.control.html.elements settings foreground #DA4632 name css.string scope meta.attribute-selector.css string settings foreground #FF950A ``` # Credits This package was forked from, and is based on [the LESS syntax package from @danro](https://github.com/danro/LESS-sublime)