From 5becaf1588e7ab2a673c99ced0febe25a5e2117c Mon Sep 17 00:00:00 2001 From: tomoron Date: Sat, 7 Feb 2026 16:12:33 +0100 Subject: [PATCH] nvim show diagnostics of line --- homeConfigs/modules/vim.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/homeConfigs/modules/vim.nix b/homeConfigs/modules/vim.nix index c4bb945..c202569 100644 --- a/homeConfigs/modules/vim.nix +++ b/homeConfigs/modules/vim.nix @@ -49,6 +49,12 @@ })) vim.lsp.enable('pylsp') + vim.diagnostic.config({ + virtual_lines = { + current_line = true + } + }) + ''; programs.neovim.extraConfig = ''