From 1b44d940a136bd1f858300c8353ee0bbf018c93c Mon Sep 17 00:00:00 2001 From: Daveanand Mannie Date: Sat, 21 Sep 2024 19:10:45 -0400 Subject: [PATCH] added javascript support --- lua/plugins/langs/javascript.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lua/plugins/langs/javascript.lua 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, + }, + }, + }, + }, +}