Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Uninstalling vim vundle package manager

Tags:

vim

vi

vundle

I've installed vundle (git cloned) vim vundle package manager. It seems like I was not even able to install a single plugins. I would like to uninstall it and start fresh with vim. Any suggestions?

like image 255
DevBear15 Avatar asked Jan 08 '16 16:01

DevBear15


People also ask

How to uninstall a vim plugin Vundle?

If you wish to uninstall one of theme, just move the cursor to correct line, and press D . After that, remove the corresponding plugin line in . vimrc file to completely uninstall the plugin from the system. Another method for uninstalling is to remove the plugin line in .

What is Vundle Vim?

Vundle is short for Vim bundle and is a Vim plugin manager. Vundle allows you to... keep track of and configure your plugins right in the .vimrc. install configured plugins (a.k.a. scripts/bundle) update configured plugins.


1 Answers

Remove this from your ~/.vimrc:

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

And then remove the ~/.vim directory

like image 147
GiftZwergrapper Avatar answered Oct 04 '22 06:10

GiftZwergrapper