There is no telling what the Fedora people are thinking with this. Their terminal window must have something other than a plain black background that most of the colors just fade into. Whatever the case I want to have a vim setup that is immune (or as immune as possible) to whatever winds of change blow through the minds of the Fedora crew. But I do have to say that any color scheme that does not also control the background, i.e that does not ensure a useable editor is broken.
# Fedora vi is some horrible thing. alias vi='vim'If you are trying to use a .vimrc and use interesting vim features and nothing is working right, this is why.
blue darkblue default delek desert elflord evening industry koehler morning murphy pablo peachpuff ron shine slate torte zellnerI looked at the above and decided that I liked "basic-dark". There is also a brother scheme called "basic-light". You can get both of them via:Incidently the new broken Fedora scheme looks a lot like "peachpuff". So, I can just add a single line to my .vimrc to pick one of these:colorscheme blueUsing the locate command and typing "locate zellner" shows me these are installed at:/usr/share/vim/vim80/colors/zellner.vimHowever, haven't we just learned that we cannot (and do not want to) trust the Fedora vim setup files? Who knows when they will decide to change or get rid of zellner or peachpuff or some other scheme that we decide that we like and get used to.Installing a non-fedora provided color scheme
git clone https://github.com/zcodes/vim-colors-basic.gitThe fetches both files: basic-dark.vim and basic-light.vim
Since I discover I actually like "elflord" pretty well, I make a private copy of it like this:
cd cd .vimrc mkdir colors cd colors cp /usr/share/vim/vim80/colors/elflord.vim .Then put "colorscheme elflord" in your .vimrc and you are safe for the time being. Now I just have to let my brain adjust to the new "elflord" colors.
Adventures in Computing / tom@mmto.org