From 89fd72163224cd8ce50626aeec25005c8bb61ebe Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Mon, 7 Jul 2025 10:12:44 +0200 Subject: [PATCH] Configure diagnostics display for nvim 0.11+ --- vim/plugin/diagnostics.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 vim/plugin/diagnostics.lua diff --git a/vim/plugin/diagnostics.lua b/vim/plugin/diagnostics.lua new file mode 100644 index 0000000..f533f0e --- /dev/null +++ b/vim/plugin/diagnostics.lua @@ -0,0 +1,10 @@ +vim.diagnostic.config({ + underline = true; + virtual_lines = { + current_line = true; + }; +-- virtual_text = { +-- source = "if_many"; +-- current_line = true; +-- }; +})