Description of problem: No package provides /usr/share/vim/vim80/spell/XX.utf-8.spl (where XX is all langcodes except for 'en') Version-Release number of selected component (if applicable): 8.0.124-2 How reproducible: Always Steps to Reproduce: 1. sudo dnf search /usr/share/vim/vim80/spell/en.utf-8.spl 2. Notice that vim-common-2:8.0.124-2.fc25.x86_64 provides it 3. sudo dnf search /usr/share/vim/vim80/spell/it.utf-8.spl Actual results: Nothing provides it Expected results: A package should provide it
There are almost no spell files provided by vim upstream, i.e. no italian dictionaries. I'm hesitant to add non-upstream files to vim, but it might be an idea to add your request to https://fedoraproject.org/wiki/Package_maintainers_wishlist?rd=PackageMaintainers/WishList For a quick solution you can use those of the hunspell-it package instead and convert them to vim format: dnf install hunspell-it mkdir -p ~.vim/spell in vim run the following command: :mkspell ~/.vim/spell/it /usr/share/myspell/it_IT It'll take a while, but you'll have ~/.vim/spell/it.utf-8.spl when it finishes.