diff --git a/README.md b/README.md
index 860cacc..9443272 100644
--- a/README.md
+++ b/README.md
@@ -16,6 +16,7 @@
9. Debugging
10. Task runner
11. Other Resources
+12. Top 6 important extensions
> The key bindings below may or may not be accurate with the latest build. See [here](https://code.visualstudio.com/docs/getstarted/keybindings) for the latest keyboard shortcut reference.
@@ -940,3 +941,30 @@ Select **Tasks** from the top-level menu, run the command **Run Task...**, and s
* [react sample app](https://github.com/Microsoft/vscode-react-sample)
* [awesome vscode](https://github.com/viatsko/awesome-vscode)
* [vscode can do that](https://vscodecandothat.com/)
+
+
+# Top 6 important extensions
+
+## 1. Path Intellisense
+
+The Path Intellisense extension helps to autocomplete filenames. Super useful when writing out paths in markup, or in any file that has path references.
+
+## 2. Shopify Liquid Snippets
+
+The Shopify Liquid Snippets includes various Liquid snippets to make developing themes faster. This includes snippets for control flow tags, iteration tags, variable tags, array filters, and more. This extension has one dependency, the Liquid Languages Support extension.
+
+## 3. HTML Snippets
+
+ HTML Snippets adds in rich language support for HTML markup, including snippets, quick info, and descriptions that include whether a tag is deprecated.
+
+## 4. Blank line at end of file
+
+ Blank line at end of file is a minimal and super simple extension that adds an extra blank line at the end of any saved file.
+
+## 5. Liquid Languages Support
+
+The Liquid Languages Support extension is a must have for those developing Shopify themes using VS Code. Though there’s support for sidebar icons to distinguish Liquid files out-of-the-box, VS Code doesn’t have syntax highlighting for Liquid without the help of this extension. This extension adds syntax highlighting for Liquid, and acts as a support for the Shopify Liquid Snippets extension.
+
+## 6. Git Lens
+
+The Git Lens extension is truly amazing, it enables you to visualize code authorship within VS Code. You can browse and explore the history of a file, view a git blame annotation for each file line, and even add a changes (diff) hover annotation, all of which are fully customizable.
\ No newline at end of file