neovim: Set coverage indicators
This commit is contained in:
parent
bc54f5159e
commit
f71937bc33
1 changed files with 6 additions and 0 deletions
|
|
@ -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,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue