Skip to content

Instantly share code, notes, and snippets.

@patrickgrey
patrickgrey / gist:ea585862c5f506ebfe2048b7d762045d
Created June 7, 2016 20:42
Gulp UnCSS ignore regex for bootstrap modal
gulp.task('uncss', () => {
return gulp.src([
'dist/styles/main.css'
])
.pipe(uncss({
html: [
'http://localhost:9000/'
],
ignore: [ /\.modal/]
}))
@patrickgrey
patrickgrey / st3-user-keys
Created October 20, 2014 21:01
Sublime Text 3 user settings & keymap
// user settings
{
"auto_complete_commit_on_tab": true,
"bold_folder_labels": true,
"color_scheme": "Packages/User/Flatland Monokai (SL).tmTheme",
"draw_white_space": "all",
"font_options": "subpixel_antialias",
"font_size": 10,
"highlight_line": true,
"highlight_modified_tabs": true,