The directories in my ~/.vim directory are
autoload bundle colors
autoload contains pathogen.vim
bundle contains nerdtree tagbar vim-colors-solarized
colors contains adobe.vim autumnleaf_modified.vim autumnleaf.vim codeburn.vim tango-desert.vim wood.vim
Now my .vimrc contains the following lines
execute pathogen#infect()
set t_Co=16
set background=light
let g:solarized_termcolors=256
colorscheme solarized
set background=dark
The line colorscheme solarized chooses the colorscheme solarized from bundle folder.
If I were to open the editor vim test.c and then set
:color wood
it selects wood color scheme from colors folder.
What is the difference between the colors for VIM chosen from colors folder and bundle folder?
:colorscheme solarized,:color solarized,:colo solarizedare all exactly the same, they just have the command name abbreviated to different degrees. - glts