add linter and formatter with it's caveats

This commit is contained in:
Yevhenii Moruhyi 2023-05-20 14:36:30 -04:00
parent d5234fec4c
commit dc82115506
3 changed files with 61 additions and 1 deletions

17
lua/plugins/svelte.lua Normal file
View file

@ -0,0 +1,17 @@
return {
{
"williamboman/mason.nvim",
opts = function(_, opts)
table.insert(opts.ensure_installed, "svelte-language-server")
end,
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
svelte = {},
},
},
},
"evanleck/vim-svelte",
}