Files
lazy_config/lua/plugins/langs/javascript.lua
2024-09-21 19:10:45 -04:00

19 lines
346 B
Lua

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,
},
},
},
},
}