Escaping special characters with backslashes \ is no trouble if you're only occasionally spicing up your searches and substitutions with regular expressions. If you want to write longer expressions without having to escape every special character, you could switch to the magic mode for that expression.
Magic mode determines how Vim parses regex-enabled strings (like those in search or substitute commands).
Vim has three magic modes: magic, no magic, and very magic.