From: Stefan Huber Date: Sun, 23 Oct 2022 07:43:55 +0000 (+0200) Subject: plugins: Load vim-manager again with Gentoo X-Git-Url: https://git.sthu.org/?p=vimconf.git;a=commitdiff_plain;h=4f49bbf4f74bd7cc52f0ecdfc5f6b224a8ab5c5b plugins: Load vim-manager again with Gentoo The clash with manpager deliver by Gentoo for vim does not clash anymore. Remove the ugly quirk for preventing package loading. --- diff --git a/plugins.vim b/plugins.vim index c1c4e6f..dcf233d 100644 --- a/plugins.vim +++ b/plugins.vim @@ -25,11 +25,7 @@ Plug 'junegunn/vim-easy-align' Plug 'thinca/vim-fontzoom' -" vim-core on Gentoo does ship a manpager plugin that collides with MANPAGER -" definition. -if has('nvim') || stridx(system("uname -r"), "-gentoo") == -1 - Plug 'lambdalisue/vim-manpager', {'on': 'MANPAGER'} -endif +Plug 'lambdalisue/vim-manpager' " Make . more useful after a plugin map Plug 'tpope/vim-repeat'