I would like to add this color scheme to Vim any suggestions on how I could accomplish that ?
3 Answers
- Copy
colors/badwolf.vimto~/.vim/colors/badwolf.vim; create directories if needed. Alternatively,git cloneinto~/.vim/bundles/and use the Pathogen package manager, or specify the repository with the Vundle package manager, etc. - In your
~/.vimrc, put / replace any existing:colorschemecommand with:
colorscheme badwolf
You also could use plugin managers like:
- https://github.com/VundleVim/Vundle.vim
- https://github.com/junegunn/vim-plug or others like pathogen
cp -r [PATH]/badwolf.vim ~/.vim/colors
:colorscheme bad[TAB]
If you want to use it everytime you open vim add the above command to your .vimrc.
-
2Your answer doesn't add anything that isn't already in mine.Ingo Karkat– Ingo Karkat2014-10-22 10:28:45 +00:00Commented Oct 22, 2014 at 10:28