This file contains hidden or 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
# Was asked how I keep my zshrc config sync'd between my computers with Dropbox | |
# Add a new directory in your Dropbox (or use an existing one) | |
mkdir -p ~/Dropbox/ohmyzsh | |
# move existing file to Dropbox | |
mv ~/.zshrc ~/Dropbox/ohmyzsh/zshrc | |
# symlink file back to your local directory | |
ln -s ~/Dropbox/ohmyzsh/zshrc ~/.zshrc |
This file contains hidden or 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
# define bourbon path, use a common library for preventing duplicates | |
add_import_path "path/to/your/bourbon/lib" | |
### -->> project paths, delete/comment if you use scout, codekit etc. | |
environment = :production # removes single line comments, keeps css comments | |
output_style = :compact | |
css_dir = "styles" #relative to project root | |
sass_dir = "styles-sass" #relative to project root | |
images_dir = "images" #relative to project root |
NewerOlder