From a54e4e92720dbdd109008df494ca3f44f6ce1c01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Carneiro?= Date: Wed, 17 May 2023 21:01:36 -0300 Subject: [PATCH] chore: consistent border style when navigating diagnostics (#2033) --- lua/core/mappings.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/core/mappings.lua b/lua/core/mappings.lua index b06bdc9..d488fdf 100644 --- a/lua/core/mappings.lua +++ b/lua/core/mappings.lua @@ -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", },