Tuesday, September 8, 2015

Vim Minimap errors

Hello, I installed Minimap on Vim, but all 3 Minimap versions have errors?

Vim 7.4.52:

1.
Minimap https://github.com/severin-lemaignan/vim-minimap
Installed into ~/.vimrc

------------------------------------------------------------------------------
set nocompatible " be iMproved, required
filetype off " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/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.

" git repos on your local machine (i.e. when working on your own plugin)
" 20150908: I commented this plugin as error.
" Plugin 'file:///home/gmarik/path/to/plugin'

" Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'

" plugin from http://vim-scripts.org/vim/scripts.html
Plugin 'L9'

" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}

" plugin for minimap/codeoverview.
Plugin 'severin-lemaignan/vim-minimap'

" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'

" Avoid a name conflict with L9
" 20150908: I commented this plugin as error logging into my github account.
" Plugin 'user/L9', {'name': 'newL9'}

" All of your Plugins must be added before the following line
call vundle

No comments: