Last active
March 7, 2024 13:04
-
-
Save nedclimax/22d6cfe14606a743ee61e1a55e518f5f to your computer and use it in GitHub Desktop.
Powershell setup script
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
| set-executionpolicy unrestricted -s cu | |
| iex (new-object net.webclient).downloadstring('https://get.scoop.sh') | |
| # Utils | |
| scoop install aria2 7zip git busybox make | |
| start "$env:USERPROFILE\scoop\apps\7zip\current\install-context.reg" | |
| # Nerd Fonts | |
| scoop bucket add nerd-fonts | |
| scoop install Jetbrains-Mono | |
| # Extras | |
| scoop bucket add extras | |
| scoop install astyle | |
| scoop install emacs | |
| scoop install neovim | |
| git clone https://github.com/nedclimax/dotfiles | |
| cmd /c "mklink /J .\.emacs.d\ .\dotfiles\.emacs.d\" | |
| cmd /c "mklink /H .\.gitconfig .\dotfiles\.gitconfig" | |
| iwr "https://gist.githubusercontent.com/mmozeiko/7f3162ec2988e81e56d5c4e22cde9977/raw/6863f19cb98b933c7535acf3d59ac64268c6bd1b/portable-msvc.py" -OutFile portable-msvc.py | |
| python.exe portable-msvc.py --accept-license | |
| scoop install w64devkit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment