From 3d0b66c7ab175c0b32feb808199bd37f946bc659 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Mon, 17 Oct 2022 09:43:44 +0200 Subject: [PATCH] try to set the width for float popup --- lua/setup/my_lspconfig.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/setup/my_lspconfig.lua b/lua/setup/my_lspconfig.lua index e48dd65..6bf931c 100644 --- a/lua/setup/my_lspconfig.lua +++ b/lua/setup/my_lspconfig.lua @@ -28,7 +28,7 @@ OpenDiagFloat = function() return end end - vim.diagnostic.open_float({ focusable = false }) + vim.diagnostic.open_float({ focusable = false, width=80 }) end local on_attach = function(client, bufnr)