config.paths.html represents the path to your HTML file.
config.paths.html
gulp.task("watch", function() { gulp.watch(config.paths.html, ["html"]); });
The task should be added to default as well:
gulp.task("default", ["html", "watch"]);