VundleVim / Vundle.vim

Vundle, the plug-in manager for Vim
http://github.com/VundleVim/Vundle.Vim
MIT License
23.92k stars 2.58k forks source link

Installed Plugins disappear when I restart Vim #928

Open HongyiZhouCN opened 4 years ago

HongyiZhouCN commented 4 years ago

Here is my problem: Everytime when I open a new window of Vim and use PluginList to check the installed Plugins, only one Plugin 'VundleVim/Vundle.vim' appears. Only when I source .vimrc in the new window, then check PluginList again, other Plugins will appear. I think it's quite abnormal since the .vimrc should be loaded automatically when I open Vim.

Here is my .vimrc file and I put it under $HOME

` set nocompatible
filetype off

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

Plugin 'VundleVim/Vundle.vim'

Plugin 'tpope/vim-fugitive'

Plugin 'git://git.wincent.com/command-t.git'

Plugin 'file:///home/gmarik/path/to/plugin'

Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}

Plugin 'Valloric/YouCompleteMe'

call vundle#end()
filetype plugin indent on

set mouse=a set nu syntax on set shiftwidth=4 set softtabstop=4 set tabstop=4 set expandtab

`

Gladiu commented 3 years ago

Have you fixed it yet? I have same issue