added javascript support
This commit is contained in:
18
lua/plugins/langs/javascript.lua
Normal file
18
lua/plugins/langs/javascript.lua
Normal 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,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user