From fbcda4b50b47862b613a684c60fb5bf37a225e1d Mon Sep 17 00:00:00 2001 From: Devin Haska <2636402+wonderfulfrog@users.noreply.github.com> Date: Fri, 7 Jun 2024 10:54:25 -0700 Subject: [PATCH] fix: exclude html snippets The autotag plugin can handle the majority of these snippets for me, so I'm happy to omit them so they don't conflict with each other. --- lua/plugins/coding.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lua/plugins/coding.lua b/lua/plugins/coding.lua index 03fecd5..37e415e 100644 --- a/lua/plugins/coding.lua +++ b/lua/plugins/coding.lua @@ -64,7 +64,9 @@ return { { "rafamadriz/friendly-snippets", config = function() - require("luasnip.loaders.from_vscode").lazy_load() + require("luasnip.loaders.from_vscode").lazy_load({ + exclude = { "html" }, + }) end, }, },