Thursday, November 16, 2017

Vim windows vundle and vimrc

I installed vim in Windows 8.1. Myngw too and git. Im trying to configure the vimrc to load plugins. I listed all plugins, ok. Installed all plugins, ok too. But the plugins don't load.

The path os plugins is the root. ~/_vimrc. ~/.vim/bundle/...

My vimrc file:

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')

set rtp+=~/vim/plugins/bundle/vundle.vim
set runtimepath+=~/vim/plugins/bundle/vundle.vim

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

Plugin 'gmarik/vundle.vim'

Plugin 'tpope/vim-fugitive'

Plugin 'vim-airline/vim-airline-themes'

Plugin 'vim-scripts/Align'

Plugin 'jiangmiao/auto-pairs'

Plugin 'wincent/command-t'

Plugin 'szw/vim-tags'

Plugin 'dkprice/vim-easygrep'

Plugin 'vim-scripts/L9'

Plugin 'LucHermitte/lh-vim-lib'

" Plugin 'itchyny/lightline'

Plugin 'LucHermitte/local_vimrc'

Plugin 'tmhedberg/matchit'

Plugin 'scrooloose/nerdcommenter'

Bundle 'scrooloose/nerdtree'

Plugin 'davidhalter/jedi-vim'

Plugin 'rstacruz/sparkup'

" Plugin 'syntastic/syntastic'

Plugin 'majutsushi/tagbar'

Plugin 'reedes/vim-thematic'

Plugin 'tpope/vim-bundler'

Plugin 'decaffeinate/decaffeinate'

Plugin 'jashkenas/coffeescript'

Plugin 'ozh/github-colors'

Plugin 'tpope/vim-eunuch'

Plugin 'tpope/vim-repeat'

" Plugin 'othree/xml'

Plugin 'sukima/xmledit'

Plugin 'JBakamovic/yavide'

Plugin 'emmetio/emmet'



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

No comments: