Vim start-up errors -
i have .vimrc file on desktop, put on github. checked out laptop , these errors. vim 7.4.52, lubuntu
error detected while processing /home/jcg/.vimrc: line 5: e117: unknown function: vundle#begin line 8: e492: not editor command: plugin 'gmarik/vundle.vim' line 13: e492: not editor command: plugin 'bling/vim-airline' line 16: e492: not editor command: plugin 'tpope/vim-fugitive' line 19: e492: not editor command: plugin 'klen/python-mode' line 21: e117: unknown function: vundle#end
the .vimrc file:
set nocompatible filetype off set rtp+=~/.vim/bundle/vundle.vim call vundle#begin() " let vundle manage vundle -- required! plugin 'gmarik/vundle.vim' " bundles install listed here " vim-airline status line github plugin 'bling/vim-airline' " git within vim plugin 'tpope/vim-fugitive' " python mode plugin 'klen/python-mode' call vundle#end() filetype plugin indent on
you need install vundle on laptop. here installation instructions; part you're missing appears be
git clone https://github.com/vundlevim/vundle.vim.git ~/.vim/bundle/vundle.vim
the set rtp
command adding ~/.vim/bundle/vundle.vim
vim's path, lets vundle#begin()
found on next line.
Comments
Post a Comment