added javascript support

This commit is contained in:
Daveanand Mannie
2024-09-21 19:10:45 -04:00
parent 76ceaac12b
commit 1b44d940a1

View File

@@ -0,0 +1,18 @@
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
biome = {
-- You can add any specific options for Biome here
init_options = {
logLevel = "info",
},
setup = function()
require'lspconfig'.biome.setup{}
end,
},
},
},
},
}