Remove lines starting with a character in vim

Delete all lines which start with ; (^ is start of line; \s* is zero or more whitespace characters which can be before the ;). This is typically used to remove the comments in asterisk configuration files:

:g/^\s*;/d