New comment by atweiden on void-packages repository https://github.com/void-linux/void-packages/pull/37795#issuecomment-1179618009 Comment: Many people prefer using a plugin manager to load plugins like FZF’s. For these users, it may feel a bit heavy-handed for the distro to install a {,n}vim plugin alongside any main binary (`fzf` in this case), when in most cases they just want the binary, and would prefer using their plugin manager to install the plugin. A subpackage would be a cleaner way to handle this, e.g.: ```bash vim-fzf_package() { short_desc+=" - Vim plugin" depends="fzf-${version}_${revision}" pkg_install() { vinstall plugin/fzf.vim 644 usr/share/vim/vimfiles/plugin } } neovim-fzf_package() { short_desc+=" - Neovim plugin" depends="fzf-${version}_${revision}" pkg_install() { vinstall plugin/fzf.vim 644 usr/share/nvim/runtime/plugin } } ```