Personal preferences of setting up my coding environment
1
Note
PowerShell user profiles can be found at %USERPROFILE%\Documents\WindowsPowerShell
You might need to run the following PowerShell Script to create your profile
if (!(Test-Path -Path $PROFILE)) {
New-Item -ItemType File -Path $PROFILE -Force
}Microsoft.PowerShell_profile.ps1- This includes all profile configuration for the Windows PowerShell Terminal
Microsoft.VSCode_profile.ps1- This includes all profile configuration for the VSCode PowerShell Terminal
ovap.omp.json- This is a OMP (Oh My Posh) JSON file, both profiles use this. It includes the following support.
- Node
- Currently just the version
- Python
- Shows what Virutal Environment is enabled.
- AWS
- Profile + Region
- Azure (Make sure to enable the ENV in the profiles)
- Currently the Environment Name
- Time Format
- 12-Hour Format
- Node
- This is a OMP (Oh My Posh) JSON file, both profiles use this. It includes the following support.
settings.json- These are all the settings that I run in VSCode.
- Keep in mind if you want to use Oh My Posh in the terminal you will need a Nerd Fonts
- These are all the settings that I run in VSCode.
extensions.txt- This is a list of extensions that I have installed.
Footnotes
-
Still adding more to this document.... ↩