From a6e6d4dabd60ab12546f56989811e58b19efb5a1 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Tue, 28 May 2024 16:12:53 +0200 Subject: [PATCH] fix(nvim-snippets): remove extra filetypes since thats no longer needed with merged PR --- lua/lazyvim/plugins/coding.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lua/lazyvim/plugins/coding.lua b/lua/lazyvim/plugins/coding.lua index a42f2632..659a28ab 100644 --- a/lua/lazyvim/plugins/coding.lua +++ b/lua/lazyvim/plugins/coding.lua @@ -104,11 +104,6 @@ return { opts = { friendly_snippets = true, global_snippets = { "all", "global" }, - extended_filetypes = { - typescript = { "javascript" }, - typescriptreact = { "javascript" }, - javascriptreact = { "javascript" }, - }, }, dependencies = { "rafamadriz/friendly-snippets" }, },