From 7229453192a09050e3c85c1ca5f738b43058ca0e Mon Sep 17 00:00:00 2001 From: don philipe Date: Thu, 19 Oct 2023 11:35:35 +0200 Subject: [PATCH] Add python coverage vim plugin --- .vimrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.vimrc b/.vimrc index 7c5a4f8..2d67224 100644 --- a/.vimrc +++ b/.vimrc @@ -108,6 +108,10 @@ Plug 'vim-autoformat/vim-autoformat' " Comment stuff out: one line with `gcc`, selection with `gc` Plug 'tpope/vim-commentary' +" Show python coverage, needs coverage.py installed (globally) +" use with `:Coveragepy report` or `:Coveragepy show` +Plug 'alfredodeza/coveragepy.vim' + call plug#end()