Created
March 28, 2026 04:45
-
-
Save zfogg/5632736f2ff9edfb0b76d8975eda2664 to your computer and use it in GitHub Desktop.
Setup a new Windows machine for development
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install chocolatey https://chocolatey.org/install | |
| # From an Admin shell | |
| Set-ExecutionPolicy Bypass -Scope Process |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install scoop https://github.com/ScoopInstaller/scoop#installation | |
| # From a user shell | |
| Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser | |
| Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression | |
| scoop install neovim git cmake |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment