nvim: correctly format lsp.lua
This commit is contained in:
parent
8b8d17a64c
commit
8c3ecc750a
1 changed files with 14 additions and 14 deletions
|
@ -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,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue