17 lines
277 B
Lua
17 lines
277 B
Lua
return {
|
|
"neovim/nvim-lspconfig",
|
|
config = function()
|
|
vim.diagnostic.config({
|
|
virtual_text = true,
|
|
signs = true,
|
|
update_in_insert = false,
|
|
underline = true,
|
|
severity_sort = true,
|
|
float = {
|
|
border = "rounded",
|
|
source = "always",
|
|
},
|
|
})
|
|
end,
|
|
}
|