Many hosting service now supports not only FTP and web uploading but also SSH. It's more convenient to use the Git flow:
- Modify and test your site locally.
- Push to remote Git repo, which triggers the update of your website.
My settings:
upstream php-fpm { | |
server unix:/var/run/php5-fpm.sock; | |
} | |
server { | |
listen 80; | |
server_name www.example.com; | |
rewrite ^ http://example.com$request_uri?; | |
} |
// Here are some variables, then a mixin and then an application of the mixin - this will only compile using Sass 3.2 | |
//variables | |
$XS: 12.5em; // 200px; | |
$S: 18.75em; // 300px | |
$SM: 35em; // 560px | |
$M: 47.5em; // 760px | |
$L: 63em; // 1008px | |
$XL: 110em; // 1760px | |
$XXL: 180em; // 2880px |
{ | |
"color_scheme": "Packages/User/Monokai Soda.tmTheme", | |
"theme": "Soda Dark.sublime-theme", | |
// "theme": "Soda Light.sublime-theme", | |
"soda_classic_tabs": true, | |
"fade_fold_buttons": false, | |
"bold_folder_labels": true, | |
"highlight_modified_tabs": true, | |
"save_on_focus_lost": true, | |
"tab_size": 2, |