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
This commit is contained in:
Sanchayan Maity 2021-11-19 15:12:29 +05:30
parent 8733194431
commit 6033367d0b
1 changed files with 1 additions and 1 deletions

View File

@ -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,