Created
October 7, 2012 04:52
-
-
Save pipster/3847142 to your computer and use it in GitHub Desktop.
st2 settings template
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
{ | |
"folders": | |
[ | |
{ // theme | |
"path": "/C/wamp/www/wordpress/wp-content/themes/twentyeleven", | |
"name": "Twenty Eleven Theme", | |
"file_exclude_patterns":[ | |
"._*", | |
"*.ico", | |
"*.swf" | |
], | |
"folder_exclude_patterns": [ | |
"images" | |
] | |
}, | |
{ // plugins folder | |
"path": "/C/wamp/www/wordpress/wp-content/plugins", | |
"name": "Plugins Folder", | |
"file_exclude_patterns":[ | |
"._*", // you need to specify this *again* | |
"*.bak", | |
"*.sample", | |
"*.tar", | |
"*.tgz", | |
"*.zip" | |
], | |
"folder_exclude_patterns": [ | |
"akismet"//, | |
// add any other plugins you wish to exclude | |
] | |
} | |
], | |
"settings": | |
{ | |
"tab_size": 4 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment