nvim: correctly format lsp.lua

This commit is contained in:
insects 2025-04-11 11:59:32 +02:00
parent 8b8d17a64c
commit 8c3ecc750a

View file

@ -5,7 +5,7 @@ return {
"williamboman/mason.nvim",
config = function()
require("mason").setup()
end
end,
},
{
"williamboman/mason-lspconfig.nvim",
@ -20,8 +20,8 @@ return {
"williamboman/mason-lspconfig.nvim",
},
config = function()
require("lspconfig").lua_ls.setup {}
end
require("lspconfig").lua_ls.setup({})
end,
},
{
"folke/lazydev.nvim",
@ -34,15 +34,15 @@ return {
opts = {
keymap = { preset = "default" },
sources = {
default = { "lazydev", "lsp", "path", "snippets", "buffer" },
providers = {
lazydev = {
name = "LazyDev",
module = "lazydev.integrations.blink",
score_offset = 100
}
}
}
}
}
default = { "lazydev", "lsp", "path", "snippets", "buffer" },
providers = {
lazydev = {
name = "LazyDev",
module = "lazydev.integrations.blink",
score_offset = 100,
},
},
},
},
},
}