Skip to content

tpbnick/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

my dotfiles and other dev related stuff

Apps Install

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

🌐 Web Browsers

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

📝 Text Editors & IDEs

📋 Text Expansion

📚 Reading & Note-Taking

🎵 Media & Entertainment

📺 TV & Streaming

🛠 System Utilities

🖼 Media & Graphics

🔍 Search & File Management

🌐 Network, Security, & Backup

🎨 Terminal & Shell

Remember to install PowerShell profile!

🔤 Fonts

Fonts

  • Hack
  • Space Mono

VSCode Setup

Install extensions:

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.

About

my dotfiles and other dev related stuff

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published