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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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",
},