1
0
Fork 0

neovim: Set coverage indicators

This commit is contained in:
Jeremy Kaplan 2025-09-25 15:10:12 -04:00
commit f71937bc33

View file

@ -89,10 +89,16 @@ return {
}, },
{ {
"andythigpen/nvim-coverage", "andythigpen/nvim-coverage",
requires = { "nvim-lua/plenary.nvim" },
version = "*", version = "*",
config = function() config = function()
require("coverage").setup({ require("coverage").setup({
auto_reload = true, auto_reload = true,
signs = {
covered = { text="" },
partial = { text="" },
uncovered = { text="" },
},
}) })
end, end,
}, },