chore: consistent border style when navigating diagnostics (#2033)

This commit is contained in:
André Carneiro
2023-05-17 21:01:36 -03:00
committed by GitHub
parent 699aeaa442
commit a54e4e9272

View File

@@ -193,14 +193,14 @@ M.lspconfig = {
["[d"] = {
function()
vim.diagnostic.goto_prev()
vim.diagnostic.goto_prev({ float = { border = "rounded" }})
end,
"Goto prev",
},
["]d"] = {
function()
vim.diagnostic.goto_next()
vim.diagnostic.goto_next({ float = { border = "rounded" }})
end,
"Goto next",
},