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

pull/2040/head
André Carneiro 1 year ago committed by GitHub
parent 699aeaa442
commit a54e4e9272
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save