initial svelte configuration and document issues

This commit is contained in:
Nick Burt 2026-07-01 11:39:19 -05:00
parent 049902a802
commit 6e93058d91
1 changed files with 3 additions and 0 deletions

View File

@ -707,6 +707,8 @@ require('lazy').setup({
typescript = true, typescript = true,
typescriptreact = true, typescriptreact = true,
cs = true, cs = true,
--TODO: not getting any lsp completion for svelte files
svelte = true,
-- python = true, -- python = true,
} }
if enabled_filetypes[vim.bo[bufnr].filetype] then if enabled_filetypes[vim.bo[bufnr].filetype] then
@ -729,6 +731,7 @@ require('lazy').setup({
javascript = { 'prettierd', 'prettier', stop_after_first = true }, javascript = { 'prettierd', 'prettier', stop_after_first = true },
typescript = { 'prettierd', 'prettier', stop_after_first = true }, typescript = { 'prettierd', 'prettier', stop_after_first = true },
typescriptreact = { 'prettierd', 'prettier', stop_after_first = true }, typescriptreact = { 'prettierd', 'prettier', stop_after_first = true },
svelte = { 'prettierd', 'prettier', stop_after_first = true },
}, },
}, },
}, },