From a5a2a576837d8122ebe9a1f8c95ad5d8db52012e Mon Sep 17 00:00:00 2001 From: Job79 Date: Wed, 2 Sep 2026 21:43:25 +0200 Subject: [PATCH] feat: add svelte --- plugin/40_plugins.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugin/40_plugins.lua b/plugin/40_plugins.lua index 39698c1..113e2e2 100644 --- a/plugin/40_plugins.lua +++ b/plugin/40_plugins.lua @@ -19,7 +19,7 @@ Config.now_if_args(function() local filetypes = { 'html', 'css', 'lua', 'go', 'php', 'blade', 'sql', 'javascript', - 'typescript', 'typescriptreact', 'dockerfile', 'yaml', 'markdown', 'dart', + 'typescript', 'typescriptreact', 'svelte', 'dockerfile', 'yaml', 'markdown', 'dart', 'json', 'xml', 'toml', 'sh', 'bash', 'zsh', 'gitcommit', 'diff', 'regex', 'http' } @@ -48,6 +48,7 @@ Config.now_if_args(function() "gopls", "intelephense", "lua_ls", + "svelte", "tailwindcss", "tsc", "dartls" @@ -72,6 +73,7 @@ Config.now_if_args(function() typescript = { "biome" }, javascriptreact = { "biome" }, typescriptreact = { "biome" }, + svelte = { "biome", stop_after_first = true }, }, }) end)