From 7aece7713a43afbb034adde1efd339cf19199f83 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Wed, 23 Nov 2022 15:28:30 +0100 Subject: [PATCH] Exchange of Downloads for Updated Versions #53 --- README.md | 15 +++++++++------ scripts/config/vimrc.txt | 7 +++---- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ad30a4d..59848e6 100644 --- a/README.md +++ b/README.md @@ -83,12 +83,12 @@ setx T c:\TEMP [7-ZIP Website](https://www.7-zip.org) -Download: https://www.7-zip.org/a/7z1900-x64.msi and save it in your "Downloads" folder. +Download latest 64bit MSI file from: https://7-zip.org/download.html and save it in your "Downloads" folder. Unpack the MSI with: ```dos cd /D %USERPROFILE%\Downloads -move /Y 7z1900-x64.msi 7z-setup.msi +move /Y 7z*-x64.msi 7z-setup.msi msiexec /a 7z-setup.msi TARGETDIR=%T% cd .. ``` @@ -106,9 +106,9 @@ rd /S /Q %T%\Files [CURL Website](https://curl.se/windows) -Download: https://curl.se/windows/dl-7.75.0_3/curl-7.75.0_3-win64-mingw.zip and save it in your "Downloads" folder. +Download latest 64bit zip file from: https://curl.se/download.html and save it in your "Downloads" folder. -Copy curl.exe and libcurl.dll to the tools folder: +Deploy curl.exe and libcurl.dll into the tools folder: ```dos cd /D %USERPROFILE%\Downloads move /Y curl*.zip curl.zip @@ -125,10 +125,13 @@ cd .. [GIT for windows website](https://git-scm.com) -Download with curl to software folder: +Download latest 64bit exe file from: https://github.com/git-for-windows/git/releases and save it in your "Downloads" folder. + +Execute: ```dos cd /D %USERPROFILE%\Downloads -%TOOLS%\curl -L https://github.com/git-for-windows/git/releases/download/v2.30.1.windows.1/Git-2.30.1-64-bit.exe --output git-setup.exe +move /Y Git-*64-bit.exe git-setup.exe +git-setup.exe cd .. ``` diff --git a/scripts/config/vimrc.txt b/scripts/config/vimrc.txt index 8059ca1..905f150 100644 --- a/scripts/config/vimrc.txt +++ b/scripts/config/vimrc.txt @@ -52,9 +52,9 @@ set expandtab "Other tabs settings set smarttab -set tabstop=4 -set softtabstop=4 -set shiftwidth=4 +set tabstop=2 +set softtabstop=2 +set shiftwidth=2 set shiftround "Code formatting @@ -133,4 +133,3 @@ set statusline+=\ %8((%l,%c)%) set statusline+=\ %P\ "percent and space at end off string set statusline+=%4* "switch to User4 highlight set statusline+=\ %{toupper(g:currentmode[mode()])}\ "The current mode -