From 6033367d0b7368f5a99793c833cbdf7dafcbd5d8 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Fri, 19 Nov 2021 15:12:29 +0530 Subject: [PATCH] nvim: init: Update vim diagnostic config The show_header option of vim.diagnostic.open_float has been renamed to simply header and has different semantics (you can now specify a custom header string and highlights). A value of false has the same meaning as before. https://github.com/neovim/neovim/pull/16328 --- nvim/.config/nvim/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/init.lua b/nvim/.config/nvim/init.lua index b59e41c..b4444c6 100644 --- a/nvim/.config/nvim/init.lua +++ b/nvim/.config/nvim/init.lua @@ -103,7 +103,7 @@ vim.diagnostic.config({ update_in_insert = false, severity_sort = true, float = { - show_header = false, + header = false, source = 'always', border = 'rounded', focusable = false,