annotate uninstall.cmd @ 176:c6a072353606
Vim config changes:
* Better working dir management in `vimrc`.
* Better shortcuts for NERDTree and CtrlP.
* Misc stuff.
author |
Ludovic Chabant <ludovic@chabant.com> |
date |
Sun, 20 Jul 2014 17:43:25 -0700 |
parents |
20c49d51f7e3 |
children |
1ba0daaa8e4e |
rev |
line source |
32
|
1 @echo off
|
|
2 setlocal
|
82
|
3
|
|
4 set /P confirm=This will delete your configuration files for Vim/Mercurial/etc. OK with that? Press CTRL-C to abort.
|
32
|
5
|
82
|
6 rmdir /Q /S "%userprofile%\vimfiles"
|
|
7 del "%userprofile%\_vimrc"
|
|
8 del "%userprofile%\mercurial.ini"
|
124
|
9 del "%userprofile%\.gitconfig"
|