Skip to content

Instantly share code, notes, and snippets.

@aclk
Forked from shakeel/windows-10-setup.md
Created July 15, 2021 03:28
Show Gist options
  • Save aclk/3e168e14ae13964f677fa7664689c2d4 to your computer and use it in GitHub Desktop.
Save aclk/3e168e14ae13964f677fa7664689c2d4 to your computer and use it in GitHub Desktop.
How I setup Windows 10

Setup Windows 10

Use scoop to install all of the UNIX command line tools and most of my needed software tools.

powershell
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
scoop bucket add versions
scoop install curl
scoop install openssh
[environment]::setenvironmentvariable('GIT_SSH', (resolve-path (scoop which ssh)), 'USER')
scoop install git
scoop install grep
scoop install concfg
concfg import solarized-dark
scoop install pshazz
# Opening PowerShell as Admin & running Set-Service ssh-agent -StartupType Manual
scoop install msys2
	msys2
	pacman -Syu
scoop install coreutils diffutils findutils tar zip unzip wget which less dd file sudo shim
scoop install graphviz
scoop install vim vimtutor
# Default vimrc created in ~/_vimrc
scoop install go
mkdir ~/go
scoop install sqlite
scoop install rust
scoop install python
scoop install nodejs
scoop install dart
scoop install ninja
scoop install gcc gdb llvm cscope cmake cppcheck
scoop install bazel
scoop install julia
scoop install qemu
scoop install haskell
scoop install chromedriver
scoop install docker
scoop install ghostscript
scoop bucket add java
scoop install oraclejdk8
scoop bucket add extras
scoop install idea
scoop install R rstudio
scoop install wireshark
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment