That should be technically speaking relatively “easy” (notice the quotation marks ?). All you have to do is open en Vim en type:
:colo torte
(torte is one of Vim’s default colorschemes, meaning this scheme is preinstalled with Vim. You can find a listing of default colorschemes here.)
But then this shit happens you get, the “E185: Cannot find color scheme ‘torte’”
Now what???? I am ashamed to say that figuring this problem out took me DAYS. Yes people you are reading it correctly it took me fucking DAYS to find out what was going on.
Here is the thing, apparently Fedora comes with a minimal install of Vim, which is very close to Vi. If you want to mess around with color schemes you have to install vim-enchanced. And how does one install vim-enhanced? By typing:
su -c “dnf install -y vim-enhanced”
When it asks for password, it is asking for your root password.
After installation is completed, open Vim and then type the following command:
:colo torte
The colorscheme will be set to torte!
(Remember, you can always do the cliccie for a larger piccie Disclaimer: For the sake of this tutorial I used Konsole normally I am a tty person only these days.)