Powershell profile
Windows Terminal configurations
Modified Paradox Theme from Powerline
Personal vscode settings
Install all Cascadia Code Fonts [GitHub Repo](https://github.com/microsoft/cascadia-code/releases
Download file from Github oh-my-posh/releases
install file
Copy the file to theme folder or 'C:\Program Files\WindowsPowerShell\Modules\oh-my-posh\2.0.230\Themes' or
C:\Program Files (x86)\oh-my-posh\themes
if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }
notepad $PROFILE
and copy this lines to theProfiles file
oh-my-posh init pwsh --config "C:\Program Files (x86)\oh-my-posh\themes\paradox_sigi.omp.json" | Invoke-Expression
{
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 16,
"editor.fontFamily": "'Cascadia Code PL', Consolas, 'Courier New', monospace",
"debug.console.fontSize": 16,
"markdown.preview.fontSize": 16,
"terminal.integrated.fontSize": 16,
"editor.renderWhitespace": "all",
"extensions.ignoreRecommendations": true,
"go.formatTool": "goimports",
"go.useLanguageServer": true
}
"profiles":
{
"defaults": {
"font":
{
"face": "Cascadia Code PL"
}
},
}