add linter and formatter with it's caveats
This commit is contained in:
parent
d5234fec4c
commit
dc82115506
3 changed files with 61 additions and 1 deletions
17
lua/plugins/svelte.lua
Normal file
17
lua/plugins/svelte.lua
Normal 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",
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue