Skip to content

Instantly share code, notes, and snippets.

@Shtian
Last active February 6, 2023 10:28
Show Gist options
  • Save Shtian/4e1e0be2d4a40d5517686c4055c6280d to your computer and use it in GitHub Desktop.
Save Shtian/4e1e0be2d4a40d5517686c4055c6280d to your computer and use it in GitHub Desktop.
Boxstarter template
Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
choco install cascadiafonts
choco install firacodenf
choco install jetbrainsmono
choco install microsoft-windows-terminal
choco install powershell-core
choco install oh-my-posh
choco install git.install
choco install gh
choco install nvm
choco install pnpm
choco install vscode-insiders.install
choco install jetbrains-rider
choco install webstorm
choco install linqpad
choco install googlechrome
choco install firefox
choco install bitwarden
choco install bitwarden-edge
choco install bitwarden-chrome
choco install spotify
choco install slack
choco install messenger
choco install notion
choco install figma
@Shtian
Copy link
Author

Shtian commented Feb 1, 2023

Install font for oh-my-posh:

oh-my-posh font install

Install Catppuccin theme for oh-my-posh:

oh-my-posh init pwsh --config 'https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/catppuccin_macchiato.omp.json' | Invoke-Expression
oh-my-posh config export --output ~/cattppuccin_macchiato.omp.json

Init new pwsh profile and open in editor

New-Item -Path $PROFILE -Type File -Force
notepad $PROFILE

Add this line to the profile

oh-my-posh init pwsh --config ~/cattppuccin_macchiato.omp.json | Invoke-Expression

To reload current profile in shell without restarting

. $PROFILE

Windows Terminal font config:

{
    "profiles":
    {
        "defaults":
        {
            "font":
            {
                "face": "MesloLGM NF"
            }
        }
    }
}

VSCode terminal font config:

"terminal.integrated.fontFamily": "MesloLGM NF"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment