# How to Enable Error Squiggles in VS Code

Hello fellow coder! Is your VS Code not showing you those helpful error squiggles? Don't worry; Today, we're going to learn how to enable those error squiggles through some easy steps. 🚀

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1697539772952/97c573c0-0f3b-4c7f-83e5-ac7330cb97ce.png align="center")

**Step 1:** Press `CTRL +,` on your keyboard to open the VS Code settings. You can also navigate to "File" &gt; "Preferences" &gt; "Settings."

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1697540018943/8c4ee6c6-280c-4a1f-81f0-173cbb61fa88.png align="center")

**Step 2:** In the settings search box, type "error squiggles" to quickly locate the relevant setting.

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1697540113453/fb6740e6-3c1f-4c58-a335-5559bc0e253a.png align="center")

**Step 3:** Look for the setting named "C\_Cpp: Error Squiggles" in the search results. Make sure that this option is enabled or set to "enabledIfIncludesResolve" (which is the default value).

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1697540261964/4231bd1b-2b5e-4347-ab66-ad5260c739d8.png align="center")

That's it! You've successfully enabled error squiggles in Visual Studio Code. Now, you'll see squiggly lines under your code when there are errors, making it easier to identify and fix issues as you write or edit your code.

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1697540497342/983e4bd7-e53d-49c4-b365-b915ba73f918.png align="center")

You can now code with confidence and catch errors as soon as they occur, thanks to error squiggles in VS Code. Happy coding! 🚀🎯
