From f71937bc33d028899b1122718032172c8293c34d Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Thu, 25 Sep 2025 15:10:12 -0400 Subject: [PATCH] neovim: Set coverage indicators --- neovim/lua/plugins/ide.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/neovim/lua/plugins/ide.lua b/neovim/lua/plugins/ide.lua index 07bfea2..d3e20b4 100644 --- a/neovim/lua/plugins/ide.lua +++ b/neovim/lua/plugins/ide.lua @@ -89,10 +89,16 @@ return { }, { "andythigpen/nvim-coverage", + requires = { "nvim-lua/plenary.nvim" }, version = "*", config = function() require("coverage").setup({ auto_reload = true, + signs = { + covered = { text="▎" }, + partial = { text="▌" }, + uncovered = { text="█" }, + }, }) end, },