diff --git a/.gitignore b/.gitignore
index 6194ce2..863b376 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,6 @@
-build/
-cmake-build/
+/build
+/cmake-build-*
+
+# VS Code settings
+/.vscode/*
+!/.vscode/*.template.json
diff --git a/.vscode/c_cpp_properties.template.json b/.vscode/c_cpp_properties.template.json
new file mode 100644
index 0000000..1f92ac5
--- /dev/null
+++ b/.vscode/c_cpp_properties.template.json
@@ -0,0 +1,17 @@
+{
+    "configurations": [
+        {
+            "name": "GayBSD x86",
+            "includePath": [
+                "${workspaceFolder}/include"
+            ],
+            "defines": [],
+            "compilerPath": "/usr/bin/clang",
+            "cStandard": "c11",
+            "cppStandard": "c++11",
+            "intelliSenseMode": "clang-x86",
+            "configurationProvider": "ms-vscode.cmake-tools"
+        }
+    ],
+    "version": 4
+}