my dotfiles and other dev related stuff
This is a list of current (as of 06/19/25) apps I have installed via Scoop.
Install with scoop import scoop-list.json
. May also need a scoop update *
after initial install to update all applications.
Note: Some applications are better installed outside of Scoop (PowerToys, PowerShell, Sublime Text) and should be installed via conventional methods (direct download/Microsoft Store).
Powershell profile also included as PowerShell_profile.ps1
. How to install:
# Check if PROFILE exists
if (-not (Test-Path $PROFILE)) {
# Create PROFILE if it doesn't exist
New-Item -Path $PROFILE -Type File -Force
}
# Push contents of PowerShell_profile.ps1 into PROFILE
Set-Content -Path $PROFILE -Value (Get-Content -Path ".\PowerShell_profile.ps1")
# Reload PROFILE
. $PROFILE
Applications
Extensions
- Adguard
- Bitwarden
- DarkReader
- Base64 Decoder
- Decentraleyes
- Google Analytics Opt-Out
- I still don't care about cookies
- UBlock Origin Lite
- Don't Track Me Google
- Enhancer For Youtube
- Humble New Tab Page
- Modern for Wikipedia
- Return Youtube Dislike
- SponsorBlock
Remember to install PowerShell profile!
- Nerd Fonts (SpaceMono and Hack)
- Hack
- Space Mono
cd vscode
# Linux
cat extensions.txt | xargs -L1 code --install-extension
# Windows (Powershell)
gc extensions.txt | % { code --install-extension $_ }
Copy settings.json
into user settings in VSCode.