前段時間,我在前面安裝了Vundle到my/Users/name目錄(即/Users/name/.vim/bundle/Vundle.vim),並設置了一個。在我的根目錄vimrc文件已下:使用vundle安裝daylerees配色方案 - mac os x
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Bundle 'daylerees/colour-schemes', { "rtp": "vim/" }
colorscheme frontier
call vundle#end()
filetype plugin indent on
我跑:PluginInstall
的建議,並說一切都已經安裝了,但我得到一個「配色方案前沿找不到」錯誤每次我打開VIM。
這就像我所做的那樣,我是否錯過了任何步驟?
我已將frontier.vim的vim文件添加到/.vim/colors/。現在我沒有找到未找到的錯誤,但顏色方案沒有顯示 – a7omiton
您確定語法高亮顯示嗎? ':syntax' on' – jgriego
只是爲了添加,如果你想默認情況下啓用語法(每次打開一個新文件時都不需要這樣做),在你的.vimrc文件中包含'syntax on' – a7omiton