⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$theme_colors: ( | |
black: $natural-black, | |
gray-dd: $darker-gray, | |
gray-d: $dark-gray, | |
gray: $gray, | |
gray-l: $light-gray, | |
gray-ll: $lighter-gray, | |
white: $white, | |
red: $ted-red | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Assuming the latest version was installed using RubyGems (gem install sass --pre) | |
// The path depends on the exact version, of course. Tab completion to the rescue. | |
cd /Applications/LiveReload.app/Contents/Resources/SASS.lrplugin/lib | |
mv sass sass-bundled | |
ln -s /Library/Ruby/Gems/1.8/gems/sass-3.2.0.alpha.275/ sass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RED="\[\033[0;31m\]" | |
YELLOW="\[\033[0;33m\]" | |
GREEN="\[\033[0;32m\]" | |
BLUE="\[\033[0;34m\]" | |
LIGHT_RED="\[\033[1;31m\]" | |
LIGHT_GREEN="\[\033[1;32m\]" | |
WHITE="\[\033[1;37m\]" | |
LIGHT_GRAY="\[\033[0;37m\]" | |
COLOR_NONE="\[\e[0m\]" |