How to customize PowerShell

How to customize PowerShell

ยท

3 min read

First steps

Install New Terminal.

There are different themes and settings for a nice look of your terminal. Many of these themes use special icons that are just for the purpose of customization (e.g github icon). And to avoid problems with the rendering of these icons and not have these annoying 'โ–ฏ' in console.

First we will start by installing a font with all these icons already included. The particular font is called Meslo Nerd Font. And it belongs to our friends at Nerd Fonts, you can check out more fonts by checking out there page.

Extract the files and choose the source:

Meslo Nerd Font

We install the font:

blog-003-img-3.png

Once the font has been installed we proceed to customize PowerShell.

Customizing PowerShell

To avoid problems with PowerShell when executing certain scripts we run this with administrator permissions from the PowerShell console:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine

PowerShell prerequisites

If you don't already have it, install Git for Windows.

Using PowerShell, install Posh-Git and Oh-My-Posh:

Install-Module posh-git -Scope CurrentUser
Install-Module oh-my-posh -Scope CurrentUser

Customize your PowerShell prompt

Open your PowerShell profile with notepad $PROFILE or the text editor of your choice.

In your PowerShell profile, add the following to the end of the file:

Import-Module posh-git
Import-Module oh-my-posh
Set-PoshPrompt -Theme name-theme

Replace "name-theme" with the name of the theme of your choice (e.g. agnoster). Themes!

Now you only have to restart or close and open the terminal again, to see the changes.

Customize your terminal

Open the terminal settings:

Config Terminal

We go to the PowerShell section and configure it as we wish but choosing the previously installed source:

Config Terminal

We save all the changes, close and reopen the terminal and that's it. We have our configuration on screen:

Config Terminal

I know. It looks horrible all that copyright marking next to my settings. Just one more thing and we're done.

We open again the terminal configuration, and choose "Open JSON file":

Config Terminal

Now with your favorite editor (mine vscode) we edit the configuration part with PowerShell adding "-nologo":

Config Terminal

And now we have it, our terminal clean and beautiful:

Config Terminal

Note:

  • To have the same configuration in the vscode integrated terminal we have to add this in the .json file of the settings:

    {
        "terminal.integrated.fontFamily": "MesloLGM NF",
        "terminal.integrated.shellArgs.windows": "-NoLogo"
    }
    
  • If you still have problems with icon rendering, you can try installing this font Caskaydia Cove Nerd Font and configuring it on your terminal. Otherwise you can try any of the others in their Nerd Fonts List.

Thanks for making it this far, if you have any questions feel free to leave them in the comments. ๐ŸŽ‰

ย