From 9aea792f090342d5a5f2ef61e5fffc6e24096d27 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Tue, 17 Sep 2024 14:48:00 -0700 Subject: [PATCH] feat(gitsigns): add line blame config --- config/plugins/qol.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/config/plugins/qol.nix b/config/plugins/qol.nix index 99661e8..d169198 100644 --- a/config/plugins/qol.nix +++ b/config/plugins/qol.nix @@ -48,7 +48,15 @@ }; crates-nvim.enable = true; # git stuff - gitsigns.enable = true; + gitsigns = { + enable = true; + settings = { + current_line_blame_opts = { + virt_text = true; + virt_text_pos = "eol"; + }; + }; + }; neogit = { enable = true; settings.graph_style = "unicode";