diff --git a/lua/plugins/langs/javascript.lua b/lua/plugins/langs/javascript.lua new file mode 100644 index 0000000..1148ea8 --- /dev/null +++ b/lua/plugins/langs/javascript.lua @@ -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, + }, + }, + }, + }, +}