There are lots of posts out there about customizing the PS console, from colorization, fonts, eventing, and more.
As a daily PowerSheller, timestamping commands helps me keep track of when I performed a particular task. Thus, I added this to my PowerShell profile, located at C:\Users\myusername\Documents\WindowsPowershell\profile.ps1
Function prompt {"PS "+[DateTime]::Now.ToString("hh:mm:ss")+">"}
For further endeavors, here are some in-depth links on creating PS profiles and console customization:
PS Profiles:
https://technet.microsoft.com/en-us/library/bb613488(v=vs.85).aspx
https://www.howtogeek.com/50236/customizing-your-powershell-profile/
https://www.simple-talk.com/sysadmin/powershell/persistent-powershell-the-powershell-profile/
Console Customization: