ecin
ecin

Reputation: 13

Vim colorscheme c++

How do I get a colorscheme such as this: http://upload.wikimedia.org/wikipedia/commons/5/54/Hello_World_Perl_GTk2.png in gVim?

Upvotes: 1

Views: 21294

Answers (1)

Uku Loskit
Uku Loskit

Reputation: 42050

Well, as gvim and vim share their configuration files you create directory "colors" in ~/.vim and put your_favorite_colorscheme.vim in it.

Then edit your .vimrc file in your home directory with to include this line: colorscheme your_favorite_colorscheme

Here's a nice site to check different themes out: https://code.google.com/archive/p/vimcolorschemetest/

Upvotes: 13

Related Questions