How to exclude wordpress category from feed

function exclude_category($query) {
	if ( $query->is_feed ) {
		$query->set('cat', '-5');
	}
return $query;
}

add_filter('pre_get_posts', 'exclude_category');
You can change with $query->is_home or $query->is_frontpage to exclude the category from frontpage
see Conditional Tags at wordpress codex

Incoming search terms for the article:

Category: Script Snippet
Tags: