From b10d82478f36ca3106722b3e1b741e6f61a0ebe0 Mon Sep 17 00:00:00 2001 From: Devin Haska Date: Tue, 27 May 2025 11:54:48 -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, }, },