Mercurial > dotfiles
comparison install.cmd @ 32:d07ca3d7f36c
Updated Windows scripts
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 22 Nov 2011 11:19:41 -0800 |
parents | 5db6b52ebf51 |
children | c3a77eaa467a |
comparison
equal
deleted
inserted
replaced
31:021b1cee8178 | 32:d07ca3d7f36c |
---|---|
1 rem @echo off | 1 @echo off |
2 setlocal | |
2 | 3 |
3 mklink /D "%userprofile%\vimfiles" "%~dp0\vim" | 4 set CWD=%~dp0 |
4 mklink "%userprofile%\_vimrc" "%~dp0\vim\vimrc" | |
5 mklink "%userprofile%\mercurial.ini" "%~dp0\hgrc\hgrc" | |
6 | 5 |
6 mklink /D "%userprofile%\vimfiles" "%CWD%vim" | |
7 mklink "%userprofile%\_vimrc" "%CWD%vim\vimrc" | |
8 | |
9 echo %%include %CWD%hgrc\hgrc > "%userprofile%\mercurial.ini" | |
10 echo [extensions] >> "%userprofile%\mercurial.ini" | |
11 echo hggit = %CWD:\=/%lib/hg/hg-git/hggit/ >> "%userprofile%\mercurial.ini" |