Mercurial > dotfiles
view install.cmd @ 119:6dbbf36a523d
VIM changes:
- Added `venv` to directories ignored by Ctrl-P.
- Fixed some mappings.
- Use magic regexes by default for searching.
- More clever searching with `*` and `#`.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 01 Feb 2013 13:32:19 -0800 |
parents | b96ff0dd0137 |
children | 20c49d51f7e3 |
line wrap: on
line source
@echo off setlocal set CWD=%~dp0 :: VIM Files if exist "%userprofile%\vimfiles" ( set /P confirm=Will delete existing "%userprofile%\vimfiles". OK with that? Press CTRL-C to abort. rmdir /Q /S "%userprofile%\vimfiles" ) if exist "%userprofile%\_vimrc" ( set /P confirm=Will delete existing "%userprofile%\_vimrc". OK with that? Press CTRL-C to abort. del /Q "%userprofile%\_vimrc" ) echo set runtimepath+=%CWD:\=/%vim > "%userprofile%\_vimrc" echo source %CWD:\=/%vim/vimrc >> "%userprofile%\_vimrc" :: Mercurial Files if exist "%userprofile%\mercurial.ini" ( set /P confirm=Will delete existing "%userprofile%\mercurial.ini". OK with that? Press CTRL-C to abort. del /Q "%userprofile%\mercurial.ini" ) echo %%include %CWD%hgrc\hgrc > "%userprofile%\mercurial.ini" echo [ui] >> "%userprofile%\mercurial.ini" echo ignore = %CWD:\=/%/hgrc/hgignore >> "%userprofile%\mercurial.ini" echo [extensions] >> "%userprofile%\mercurial.ini" echo hggit = %CWD:\=/%lib/hg/hg-git/hggit/ >> "%userprofile%\mercurial.ini" echo onsub = %CWD:\=/%lib/hg/onsub/onsub.py >> "%userprofile%\mercurial.ini"