Goal: make any terminal on any system feel nice and familiar
inspo: https://github.com/jayharris/dotfiles-windows
Install the Agave Nerd Font from https://www.nerdfonts.com/font-downloads. SetAgave Nerd Font font for the following applications:
- Visual Studio Code (terminal font:
terminal.integrated.fontFamily) - PowerShell (admin)
- Windows Terminal
# WIP: should be just the same as darwin just swap the brew for apt# install the files
> git clone https://github.com/largerock/dotfiles.git ~/dotfiles && cd ~/dotfiles && ./scripts/bootstrap-darwin.sh
# post installation dependencies
> .~/.depspostinst .~/.deps
- install powershell 7:
winget install Microsoft.PowerShell - Open powershell as admin
- Run:
Set-ExecutionPolicy RemoteSignedto allow the scripts to run. - Run:
# install the powershell profile and scripts
cd ~\ && git clone https://github.com/largerock/dotfiles.git && cd dotfiles && .\scripts\bootstrap-windows.ps1
# post install deps (will run deps.ps1 inside of the $profile dir)
& (Join-Path (Split-Path -Parent $PROFILE) "deps.ps1")
# Post install to set SSH to use Powershell instead of CMD (requires PWSH 7 installed in deps)
New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" `
∙ -Name DefaultShell `
∙ -Value "C:\Program Files\PowerShell\7\pwsh.exe" `
∙ -PropertyType String `
∙ -Forceadding windows keys: C:/ProgramData/ssh/