完全重新安装/删除VIM


2

我最近运行了一个脚本来配置VIM并安装开发所需的插件。我像这样安装它:

$ git clone https://github.com/sontek/dotfiles.git
$ cd dotfiles
$ ./install.sh vim

我不懂任何插件,现在我想删除我所做的一切。

我基本上想要全新安装VIM,这样我就可以自己配置并理解所有内容。

我该怎么做?我正在使用Linux Mint LXDE。

Answers:


5

尝试在shell中运行以下命令:

sudo apt-get purge vim && sudo apt-get install vim

这将完全删除vim,包括所有配置文件,并再次安装它。


这样做了,我的.vimrc重新出现了,我能够清除它。谢谢。
ewooycom
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.