From 2c0a6d095f612d8e2a4c4e0443d14a6e7815115d Mon Sep 17 00:00:00 2001 From: Samuel Vasko Date: Sat, 7 Sep 2013 17:39:24 +0200 Subject: [PATCH] Changes for startup --- config/ConEmu.xml | 27 +++++++++++++++------------ vendor/init.bat | 16 +++++++--------- 2 files changed, 22 insertions(+), 21 deletions(-) diff --git a/config/ConEmu.xml b/config/ConEmu.xml index 0f1fd56..4c9e8a1 100644 --- a/config/ConEmu.xml +++ b/config/ConEmu.xml @@ -1,7 +1,7 @@ - + @@ -125,10 +125,10 @@ - + - - + + @@ -249,7 +249,7 @@ - + @@ -329,7 +329,7 @@ - + @@ -483,16 +483,16 @@ - + - + - + @@ -500,11 +500,11 @@ - + - - + + @@ -547,6 +547,9 @@ + + + diff --git a/vendor/init.bat b/vendor/init.bat index d81b404..e58b785 100644 --- a/vendor/init.bat +++ b/vendor/init.bat @@ -1,25 +1,23 @@ -@echo off - :: Set prompt style -prompt $E[1;32;40m$P $_$E[1;30;40m$$ $E[0m +@prompt $E[1;32;40m$P $_$E[1;30;40m$$ $E[0m :: Pick right version of clink -if "%PROCESSOR_ARCHITECTURE%"=="x86" ( +@if "%PROCESSOR_ARCHITECTURE%"=="x86" ( set architecture=86 ) else ( set architecture=64 ) :: Run clink -vendor\clink\clink_x%architecture%.exe inject --quiet --profile config +@vendor\clink\clink_x%architecture%.exe inject --quiet --profile config -set rootDir=%CD% +@set rootDir=%CD% :: Enhance Path -PATH=%PATH%;%rootDir%\bin +@set PATH=%PATH%;%rootDir%\bin; :: Add aliases -doskey /macrofile=%rootDir%\config\aliases +@doskey /macrofile=%rootDir%\config\aliases :: cd into users homedir -cd /d "%userprofile%" +@cd /d "%userprofile%"