GVim kann unter Windows 10 keine Plugins finden

GVim kann unter Windows 10 keine Plugins finden

Unter Windows 10 habe ich GVim unter Users\myuser\Vim installiert. Ich verwende Vundle zur Verwaltung von Plugins und es funktioniert einwandfrei. Aber Vim findet keine meiner anderen Plugin-Dateien. Sie sind (mit Vundle) unter Users\myuser\Vim\vimfiles\bundle installiert. Wie kann ich Vim dazu bringen, sie zu finden?

Ich habe bereits versucht, das Plugin-Verzeichnis zu meinem RTP in _vimrc hinzuzufügen, aber ohne Erfolg. Ich weiß nicht, ob das damit zusammenhängt, aber wenn ich vim starte, beginnt es immer mit dem Kennwort C:\WINDOWS\System32 und nicht mit dem Verzeichnis, in dem Vim installiert ist.

Hier ist der Eröffnungsteil meiner _vimrc:

set nocompatible 
"source $VIMRUNTIME/vimrc_example.vim 
source $VIMRUNTIME/mswin.vim 

au! BufWritePost $MYVIMRC nested source $MYVIMRC 

filetype off                  " required 

set rtp+=%HOMEPATH%\Vim\vimfiles\bundle\Vundle.vim 
set rtp+=%HOMEPATH%\Vim\vimfiles 
call vundle#begin() 
let g:vundle#bundle_dir='vimfiles\bundle' 

Plugin 'VundleVim/Vundle.vim' 

" basic editing functions------------------------------------ 
Bundle 'tpope/vim-abolish' 
Bundle 'Lokaltog/vim-easymotion' 
Bundle 'camelcasemotion' 
Bundle 'rename' 
Bundle 'tpope/vim-repeat' 
Bundle 'scrooloose/nerdcommenter' 
Bundle 'surround.vim' 
Bundle 'gundo' 
Bundle 'YankRing.vim' 
Bundle 'vim-multiple-cursors' 
Bundle 'guifontpp.vim' 
" gui--------------------------------------------------------- 
Bundle 'vim-airline/vim-airline' 
Bundle 'vim-airline/vim-airline-themes' 
Bundle 'qpkorr/vim-bufkill' 
Bundle 'drmikehenry/vim-fontsize' 
" project management------------------------------------------ 
Bundle 'xolox/vim-session' 
Bundle 'TaskList.vim' 
" code completion and symbols--------------------------------- 
Bundle 'snipmate' 
Bundle 'supertab' 
Bundle 'scrooloose/syntastic' 
Bundle 'majutsushi/tagbar' 
Bundle 'Valloric/YouCompleteMe' 
"Bundle 'Shougo/neocomplete.vim' 
Bundle 'Shougo/context_filetype.vim' 
" utilities--------------------------------------------------- 
Bundle 'tlib' 
Bundle 'AnsiEsc.vim' 
Bundle 'vim-misc' 
Bundle 'WebAPI.vim' 
" search and navigation--------------------------------------- 
Bundle 'Shougo/unite.vim' 
Bundle 'ack.vim' 
Bundle 'kien/ctrlp.vim' 
Bundle 'scrooloose/nerdtree' 
Bundle 'voogle' 
" filetypes and code hilighting--------------------------------- 
Bundle 'SyntaxRange' 
" markdown-------------------------------------------------------- 
Bundle 'vim-pandoc/vim-pandoc' 
Bundle 'vim-pandoc/vim-pandoc-after' 
Bundle 'vim-pandoc/vim-markdownfootnotes' 
Bundle 'vim-pandoc/vim-pandoc-syntax' 
" latex---------------------------------------------------------- 
Bundle 'jcf/vim-latex' 
" python--------------------------------------------------------- 
Bundle 'pychimp' 
Bundle 'klen/python-mode' 
Bundle 'monotasker/vim_web2py_syntax' 
" javascript------------------------------------------------------ 
Bundle 'itspriddle/vim-jquery' 
" html/xml-------------------------------------------------------- 
Bundle 'closetag.vim' 
Bundle 'XML-Folding' 
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'} 
Bundle 'bonsaiben/bootstrap-snippets' 
" css--------------------------------------------------------------- 
Bundle 'vim-less' 
Bundle 'vim-lesscss' 
Bundle 'less-syntax' 
Bundle 'css_color.vim' 
" svg--------------------------------------------------------------- 
Bundle 'svg.vim' 
" colorschemes --------------------------------------------------- 
Bundle 'chriskempson/base16-vim' 
"Bundle 'solarized' 
Bundle 'flazz/vim-colorschemes' 
Bundle 'vividchalk.vim' 
Bundle 'Lokaltog/vim-distinguished' 
Bundle 'altercation/vim-colors-solarized' 
" color utilities --------------------------------------------------- 
Bundle 'colorv' 
Bundle 'galaxy.vim' 
Bundle 'guicolorscheme.vim' 
Bundle 'KabbAmine/vCoolor.vim' 
" version control --------------------------------------------------- 
Bundle 'tpope/vim-git' 
Bundle 'tpope/vim-fugitive' 
" snippets ---------------------------------------------------------- 
Bundle 'monotasker/web2py-snippets' 

" All of your Plugins must be added before the following line 
call vundle#end()            " required 
syntax on 
filetype plugin indent on    " required 
set nospell 

" UTILITY MAPPINGS 
" ========================================================================== 
let maplocalleader = '\' 
nnoremap ; : 
vnoremap ; :

verwandte Informationen