Skip to content

Bits of .NET

Daily micro-tips for C#, SQL, performance, and scalable backend engineering.

  • Asp.Net Core
  • C#
  • SQL
  • JavaScript
  • CSS
  • About
  • ErcanOPAK.com
  • No Access
  • Privacy Policy
Windows

Windows 11: Customize Windows Terminal for Professional Development

- 22.03.26 - ErcanOPAK

⚡ Terminal That Looks Like Hollywood

Default terminal ugly? Windows Terminal + customization = beautiful, productive, professional dev environment.

Install Oh My Posh (Themes)

# Install Oh My Posh (PowerShell prompt theme engine)
winget install JanDeDobbeleer.OhMyPosh

# Install Nerd Font (for icons)
# Download from: https://www.nerdfonts.com/
# Recommended: CascadiaCode Nerd Font, FiraCode Nerd Font

# Configure PowerShell profile
notepad $PROFILE

# Add to profile:
oh-my-posh init pwsh --config ~/AppData/Local/Programs/oh-my-posh/themes/jandedobbeleer.omp.json | Invoke-Expression

# Reload profile
. $PROFILE

🎨 Popular Themes

  • jandedobbeleer: Minimal, fast, shows git status
  • paradox: Two-line prompt, detailed info
  • powerlevel10k_rainbow: Colorful, feature-rich
  • atomic: Clean, simple, professional
  • dracula: Popular dark theme

Browse all themes: Get-PoshThemes

Windows Terminal Settings

// Settings → Open JSON file
{
  "defaultProfile": "{guid-of-powershell}",
  
  "profiles": {
    "defaults": {
      // Font with icons
      "font": {
        "face": "CascadiaCode Nerd Font",
        "size": 11
      },
      
      // Acrylic transparency
      "useAcrylic": true,
      "acrylicOpacity": 0.8,
      
      // Color scheme
      "colorScheme": "Dracula",
      
      // Cursor
      "cursorShape": "bar",
      
      // Padding
      "padding": "8, 8, 8, 8"
    }
  },
  
  "schemes": [
    // Import from: https://windowsterminalthemes.dev/
  ]
}

Useful PowerShell Modules

# PSReadLine (better autocomplete)
Install-Module PSReadLine -Force

# Add to profile:
Set-PSReadLineOption -PredictionSource History
Set-PSReadLineOption -PredictionViewStyle ListView

# Terminal-Icons (file icons in ls)
Install-Module -Name Terminal-Icons

# Add to profile:
Import-Module Terminal-Icons

# z (quick directory jumping)
Install-Module -Name z

# Usage: After visiting ~/projects/myapp multiple times
# Just type: z myapp
# Jumps directly to ~/projects/myapp

⌨️ Keyboard Shortcuts

Shortcut Action
Ctrl + Shift + T New tab
Ctrl + Shift + D Duplicate tab
Alt + Shift + D Split pane
Ctrl + , Open settings

🎯 What Good Customization Gives You

  • Git integration: See branch, status in prompt
  • Path abbreviation: ~/p/myapp instead of full path
  • Command history: Autocomplete from history
  • Error indicators: Red prompt when command fails
  • Icons: File type icons in directory listings
  • Speed: See command execution time

💡 My PowerShell Profile

# Oh My Posh theme
oh-my-posh init pwsh --config ~/jandedobbeleer.omp.json | Invoke-Expression

# Terminal Icons
Import-Module Terminal-Icons

# PSReadLine config
Set-PSReadLineOption -PredictionSource History
Set-PSReadLineOption -PredictionViewStyle ListView

# Aliases
Set-Alias -Name g -Value git
Set-Alias -Name vim -Value nvim

# Functions
function ll { Get-ChildItem -Force }
function mkcd($dir) { mkdir $dir; cd $dir }

# z (directory jumper)
Import-Module z

“Customized Windows Terminal looks better than Mac terminal now. Git status in prompt saves me 100 git status commands daily. Autocomplete from history is magic. Terminal went from tool to joy.”

— Windows Developer

Related posts:

Windows 11 Taskbar Becomes Unresponsive

Windows 11 Power User Secret: How PowerToys Makes You 3x More Productive

Windows 11 “VPN Slow After Update” — Broken MTU

Post Views: 4

Post navigation

Windows 11: Use WSL2 to Run Linux Tools Natively on Windows
CSS: Use Container Queries for True Component-Based Responsive Design

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

April 2026
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
27282930  
« Mar    

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (950)
  • How to add default value for Entity Framework migrations for DateTime and Bool (858)
  • Get the First and Last Word from a String or Sentence in SQL (836)
  • How to select distinct rows in a datatable in C# (805)
  • How to make theater mode the default for Youtube (751)
  • Add Constraint to SQL Table to ensure email contains @ (578)
  • How to enable, disable and check if Service Broker is enabled on a database in SQL Server (564)
  • Average of all values in a column that are not zero in SQL (531)
  • How to use Map Mode for Vertical Scroll Mode in Visual Studio (489)
  • Find numbers with more than two decimal places in SQL (447)

Recent Posts

  • C#: Use Init-Only Setters for Immutable Objects After Construction
  • C#: Use Expression-Bodied Members for Concise Single-Line Methods
  • C#: Enable Nullable Reference Types to Eliminate Null Reference Exceptions
  • C#: Use Record Types for Immutable Data Objects
  • SQL: Use CTEs for Readable Complex Queries
  • SQL: Use Window Functions for Advanced Analytical Queries
  • .NET Core: Use Background Services for Long-Running Tasks
  • .NET Core: Use Minimal APIs for Lightweight HTTP Services
  • Git: Use Cherry-Pick to Apply Specific Commits Across Branches
  • Git: Use Interactive Rebase to Clean Up Commit History Before Merge

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (950)
  • How to add default value for Entity Framework migrations for DateTime and Bool (858)
  • Get the First and Last Word from a String or Sentence in SQL (836)
  • How to select distinct rows in a datatable in C# (805)
  • How to make theater mode the default for Youtube (751)

Recent Posts

  • C#: Use Init-Only Setters for Immutable Objects After Construction
  • C#: Use Expression-Bodied Members for Concise Single-Line Methods
  • C#: Enable Nullable Reference Types to Eliminate Null Reference Exceptions
  • C#: Use Record Types for Immutable Data Objects
  • SQL: Use CTEs for Readable Complex Queries

Social

  • ErcanOPAK.com
  • GoodReads
  • LetterBoxD
  • Linkedin
  • The Blog
  • Twitter
© 2026 Bits of .NET | Built with Xblog Plus free WordPress theme by wpthemespace.com