Vim vundle colorschemes - vimrc

时间:2011-12-09 23:01:10

标签: vim

您好我一直在尝试在ubuntu上配置vim。

所有软件包似乎安装得很好。但是,如果通过vundle安装colorscheme然后使用colorscheme名称,它似乎找不到该方案。

我试图安装轨道广播,曝光和沙漠温暖,但都无法加载。

这是我的.vimrc我做错了吗?

set nocompatible               " be iMproved
filetype off                   " required!

colorscheme desert-warm 

" next tab
map <F7> :tabn    
" previous tab
map <F8> :tabp
" Close Tab abd save
map <F9> ZZ
" open and edit file
map <F6> :tabedit

set rtp+=~/.vim/bundle/vundle/
call vundle#rc()

" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'

" My Bundles here:
"
" original repos on github
Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
Bundle 'tpope/vim-rails.git'
Bundle 'desert-warm-256'
" vim-scripts repos

Bundle 'L9'
Bundle 'FuzzyFinder'
" non github repos
Bundle 'git://git.wincent.com/command-t.git'
Bundle 'https://github.com/vim-scripts/perl-support.vim.git'
Bundle 'https://github.com/Raimondi/delimitMate.git'
Bundle 'https://github.com/altercation/vim-colors-solarized.git'
Bundle 'https://github.com/jpo/vim-railscasts-theme.git'
" ...

filetype plugin indent on     " required!
"
" Brief help
" :BundleList          - list configured bundles
" :BundleInstall(!)    - install(update) bundles
" :BundleSearch(!) foo - search(or refresh cache first) for foo
" :BundleClean(!)      - confirm(or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed..

4 个答案:

答案 0 :(得分:12)

尝试将colorscheme调用移至文件末尾。

此外,您示例中的配色方案名称对我不起作用 - 它应该是colorscheme desert-warm-256。要查看当前安装的配色方案列表,请尝试以交互方式输入:colorscheme <TAB>

答案 1 :(得分:5)

我认为这个问题的答案是原始海报的.vimrc中没有call vundle#end()syntax on

colorscheme solarized之后的任何地方添加这两行,例如call vundle#end()行,就可以解决问题。

答案 2 :(得分:0)

colorscheme desert-warm必须在Bundle 'desert-warm-256'之后,因为它是Bundle命令,它将东西添加到路径中:

Bundle 'desert-warm-256'
colorscheme desert-warm

来源:same question on GitHub issue

注意:Vundle最近(2014-03-18)更换为使用Plugin而不是Bundle,因此在git pull之后它将会是:

Plugin 'desert-warm-256'
colorscheme desert-warm

答案 3 :(得分:0)

你应该写下你的&#34; colorsheme desert bla bla&#34;在插件行之后的行。因为Vundle首先需要安装这个颜色插件,然后才能使用它。对不起,我的英语很无聊。