Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between color and colorscheme in `.vimrc`

Tags:

vim

What's the difference between the commands color and colorscheme as used in .vimrc?

Just curious since the README.md for Janus: Vim Distribution uses color, whereas the README for Solarized Colorscheme for Vim uses colorscheme.

like image 681
Matthew Rankin Avatar asked Mar 26 '12 16:03

Matthew Rankin


1 Answers

:colo[rscheme] {name}
           Load color scheme {name}.  This searches 'runtimepath'
           for the file "colors/{name}.vim.  The first one that
           is found is loaded.

Abbreviation for colorscheme is color

like image 116
kev Avatar answered Nov 16 '22 03:11

kev