How to increase productivity at work with a pretty Windows Terminal and smart Powerline tools

Windows Terminal is the latest software update for your boring and ugly looking command-line tools like cmd, powershell and WSL (Windows Subsystem for Linux)

Top Features:

Google Chrome like multi-tabs suppport
GPU acceleration (for fa…


This content originally appeared on DEV Community and was authored by DEV Community

windows terminal

Windows Terminal is the latest software update for your boring and ugly looking command-line tools like cmd, powershell and WSL (Windows Subsystem for Linux)

Top Features:

  • Google Chrome like multi-tabs suppport
  • GPU acceleration (for faster text rendering)
  • Split panes support(eg: 4 cmd tabs at once)
  • Custom themes and styling (you dress it like you want)
  • Open Source project (you too can contribute to make it better)

Microsoft’s intervention in the open-source community has opened up new doors for developers like us and has brought in more flexibility too.

Pre-requisites

// Windows Users, downoad file with the extension .msi
PowerShell-X.X.X-win-x64.msi
STEPS TO INSTALL:
1. Download the .zip file from the releases page
2. Right-click on the font file and install it

Installation Steps - Guide

  1. Open PowerShell Core prompt
  2. Install Posh-Git using this command:
Install-Module posh-git -Scope CurrentUser

Posh-Git solves our age-old problem for checking git status or git branch information and provides interesting features :

Tab completion intellisense (type-in the command and it gives you auto-completion just by hitting Tab button)

  • Git commands
  • Parameters /git flags
  • Branch names
  1. Install Oh-My-Posh using this command:


Install-Module oh-my-posh -Scope CurrentUser

Oh-My-Posh adds powerful theming support and other capabilities to Powershell for making a fluid git experience possible

NOTE: While running the above commands, you may get an option to install NuGet. So go ahead and install it by pressing [Y] key

  • (Optional) Install PSReadline if you are running PowerShell Core
  • Customize the PowerShell prompt with custom styles
notepad $PROFILE
  • Add the following lines to the notepad file and save it using Ctrl + S (Windows)
Import-Module posh-git
Import-Module oh-my-posh
Set-Theme Paradox
  • Open Windows Terminal settings config file
  • Open Windows Terminal
  • Ctrl + , (or manually go to settings like below)

terminal settings

  • Set a nice default font-family for your Windows Terminal
  1. Find "defaults" object under "profiles" object
  2. Paste the following line under "defaults" object
"defaults":
   {
     // Put settings here that you want to apply to all profiles.
     "fontFace": "Cascadia Code PL",
   },

Bingo!

Now your productivity will boost up while you work on your dreams…


This content originally appeared on DEV Community and was authored by DEV Community


Print Share Comment Cite Upload Translate Updates
APA

DEV Community | Sciencx (2022-03-05T08:02:18+00:00) How to increase productivity at work with a pretty Windows Terminal and smart Powerline tools. Retrieved from https://www.scien.cx/2022/03/05/how-to-increase-productivity-at-work-with-a-pretty-windows-terminal-and-smart-powerline-tools/

MLA
" » How to increase productivity at work with a pretty Windows Terminal and smart Powerline tools." DEV Community | Sciencx - Saturday March 5, 2022, https://www.scien.cx/2022/03/05/how-to-increase-productivity-at-work-with-a-pretty-windows-terminal-and-smart-powerline-tools/
HARVARD
DEV Community | Sciencx Saturday March 5, 2022 » How to increase productivity at work with a pretty Windows Terminal and smart Powerline tools., viewed ,<https://www.scien.cx/2022/03/05/how-to-increase-productivity-at-work-with-a-pretty-windows-terminal-and-smart-powerline-tools/>
VANCOUVER
DEV Community | Sciencx - » How to increase productivity at work with a pretty Windows Terminal and smart Powerline tools. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/03/05/how-to-increase-productivity-at-work-with-a-pretty-windows-terminal-and-smart-powerline-tools/
CHICAGO
" » How to increase productivity at work with a pretty Windows Terminal and smart Powerline tools." DEV Community | Sciencx - Accessed . https://www.scien.cx/2022/03/05/how-to-increase-productivity-at-work-with-a-pretty-windows-terminal-and-smart-powerline-tools/
IEEE
" » How to increase productivity at work with a pretty Windows Terminal and smart Powerline tools." DEV Community | Sciencx [Online]. Available: https://www.scien.cx/2022/03/05/how-to-increase-productivity-at-work-with-a-pretty-windows-terminal-and-smart-powerline-tools/. [Accessed: ]
rf:citation
» How to increase productivity at work with a pretty Windows Terminal and smart Powerline tools | DEV Community | Sciencx | https://www.scien.cx/2022/03/05/how-to-increase-productivity-at-work-with-a-pretty-windows-terminal-and-smart-powerline-tools/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.