Skip to content

Instantly share code, notes, and snippets.

@csharpforevermore
Last active October 14, 2022 14:09
Show Gist options
  • Save csharpforevermore/f479c5549992f5c00e02697e9ba69114 to your computer and use it in GitHub Desktop.
Save csharpforevermore/f479c5549992f5c00e02697e9ba69114 to your computer and use it in GitHub Desktop.
Chocolatey setup script for required development environment (see https://chocolatey.org/ for more information)
ECHO OFF
REM Install Chocolatey
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
REM install password manager
cinst -y dashlane
REM Install browsers
cinst -y googlechrome
cinst -y firefox
cinst -y waterfox
REM install text editors
cinst -y brackets
cinst -y sublimetext3
cinst -y sublimetext3.packagecontrol
cinst -y notepadplusplus.install
choco install beyondcompare --confirm
choco install tortoisegit --confirm
-- %USERPROFILE%\.gitconfig
[diff]
tool = bc4
[difftool]
prompt = false
[difftool "bc4"]
cmd = \"c:/program files/beyond compare 4/bcomp.exe\" "$LOCAL" "$REMOTE"
[merge]
tool = bc4
[mergetool]
prompt = false
[mergetool "bc4"]
trustExitCode = true
cmd = \"c:/program files/beyond compare 4/bcomp.exe\" "$LOCAL" "$REMOTE" "$BASE" "$MERGED"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment