From 090b520fcdde4bd426441deb0cf64759c4bf31ef Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Tue, 17 Jan 2023 13:25:26 -0600 Subject: [PATCH] refactor(nvim): use empty borders for diagnostic --- dots/.nvim-environments/primary/config/lua/core/lsp.lua | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dots/.nvim-environments/primary/config/lua/core/lsp.lua b/dots/.nvim-environments/primary/config/lua/core/lsp.lua index 048ff4af..922c3e9d 100644 --- a/dots/.nvim-environments/primary/config/lua/core/lsp.lua +++ b/dots/.nvim-environments/primary/config/lua/core/lsp.lua @@ -37,9 +37,14 @@ M.setup = function() float = { focusable = true, style = "minimal", - border = "rounded", + border = { + " ", + " ", + " ", + " ", + }, source = "always", - header = "", + header = "Diagnostic", prefix = "", }, })