vim 插件未加载:mac

vim plugins not loading: mac

我正在尝试加载 javascriopt 和其他插件。 我正在使用 Vundle 这是我的 ~/.vimrc。 (我在 mac 上使用 gvim)

set nocompatible
filetype on

" set the runtime path to include Vundle and initialize

" set t_Co=256
syntax on
set nu
set background=light
colorscheme solarized
set laststatus=2

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#rc()
" Declare all plugins here

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'

" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
Plugin 'L9'
" Git plugin not hosted on GitHub
" Plugin 'git://git.wincent.com/command-t.git’

Plugin 'jelera/vim-javascript-syntax'
Plugin 'pangloss/vim-javascript'
Plugin 'nathanaelkane/vim-indent-guides'
Plugin 'Raimondi/delimitMate'



" All of your Plugin must be added before the following line
filetype plugin indent on    " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :Bundle       - lists configured plugins
" :Bundle    - installs plugins; append `!` to update or just :Bundle
" :Bundle foo - searches for foo; append `!` to refresh local cache
" :Bundle      - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line

家里的目录结构~/.vim

我正在使用 this link

中建议的插件

这是js文件的截图。

任何关于我缺乏的想法,请分享。

由于.vimrc中的一些语法错误导致Vundle无法正常工作。 vim 的旧版本需要

filetype off

在加载 vundle 插件之前。请参阅此 question 了解更多详情。

还有call vundle#end()好像不见了。

请遵循以下样板并根据您的要求进行编辑。

set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

" Let vundle manage itself:
Plugin 'VundleVim/Vundle.vim'
" Syntax checking plugin
Plugin 'scrooloose/syntastic'

Plugin 'jelera/vim-javascript-syntax'
Plugin 'pangloss/vim-javascript'
Plugin 'nathanaelkane/vim-indent-guides'
Plugin 'Raimondi/delimitMate'


call vundle#end() 

filetype plugin indent on " Filetype auto-detection
syntax on " Syntax highlighting