ricardozea
11/27/2012 - 3:55 PM

Sublime Text 2 -- User Defined instructions

Sublime Text 2 -- User Defined instructions

General CMD line:

sass --watch scss:css --style compact --compass --debug-info

Sulbime Text 2:
{
   "color_scheme": "Packages/Color Scheme - Default/Monokai Bright.tmTheme",
   "font_face": "Envy Code R VS",
   "font_size": 11,
   "ignored_packages":
   [
       "Vintage"
   ],

   // The number of spaces a tab is considered equal to
  "tab_size": 2
}
Emmet:
https://github.com/emmetio/emmet/issues/114

Emmet » Settings - User:
{
   "preferences": {
       //Removes the space after the colon
       "css.valueSeparator": ":",
       //Adds a space after the semicolon
       "css.propertyEnd": "; "
   }
}

Create this file "syntaxProfiles.json" and in it paste this code:
{
    "css": {
       "filters": "s"
    }
}

Create the folder "/emmet" if it's not there, and save it in: c:/Users/your-user/emmet/