Vundle.vim: How to uninstall Vundle.vim

Created on 18 Apr 2019  路  1Comment  路  Source: VundleVim/Vundle.vim

How can one uninstall Vundle.vim, I removed it and I still see errors from Vundle.

Most helpful comment

There are two places where one needs to remove vim plugins: from your vimrc/config files and from your .vim directory.

Vundle's typical location is in ~/.vim/bundle/Vundle.vim/. (More generally, it's wherever you put it. But this is where the README suggests putting it). You can delete this whole directory.

Typically, the only configuration file containing vundle commands is your .vimrc. You can delete the lines appearing in the README, essentially. The lines you should delete are those looking like

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin <other_vim_plugins>
...
call vundle#end()

>All comments

There are two places where one needs to remove vim plugins: from your vimrc/config files and from your .vim directory.

Vundle's typical location is in ~/.vim/bundle/Vundle.vim/. (More generally, it's wherever you put it. But this is where the README suggests putting it). You can delete this whole directory.

Typically, the only configuration file containing vundle commands is your .vimrc. You can delete the lines appearing in the README, essentially. The lines you should delete are those looking like

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin <other_vim_plugins>
...
call vundle#end()
Was this page helpful?
0 / 5 - 0 ratings

Related issues

kobiljonergashev picture kobiljonergashev  路  7Comments

bmyell picture bmyell  路  5Comments

unode picture unode  路  5Comments

davidius81 picture davidius81  路  3Comments

genokan picture genokan  路  4Comments