我是使用的Vbundle管理VIM插件的。但是按照VimAwesome上的描述安装之后报了下面的错误:
Error detected while processing /home/longtao/.vimrc:
line 15:
E185: Cannot find color scheme ‘solarized’
Press ENTER or type command to continue
后来发现是因为VIM在运行的时候找不到文件路径,后来把路径加入到VIM的runtimepath改过之后就行了
set rtp+=~/.vim/bundle/Vundle.vim,~/.vim/bundle/vim-colors-solarized
需要注意的一点是上面这一行在.vimrc文件中的位置一定要在colorscheme solarized之前,
我是改成下面这样子的:
set rtp+=~/.vim/bundle/Vundle.vim,~/.vim/bundle/vim-colors-solarized
syntax enable
set background=dark
colorscheme solarized