Skip to content

largerock/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

prettyFunctional terminals

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

Linux

# WIP: should be just the same as darwin just swap the brew for apt

MacOS

# install the files
> git clone https://github.com/largerock/dotfiles.git ~/dotfiles && cd ~/dotfiles && ./scripts/bootstrap-darwin.sh

# post installation dependencies
> .~/.deps

postinst .~/.deps

Windows

  1. install powershell 7: winget install Microsoft.PowerShell
  2. Open powershell as admin
  3. Run: Set-ExecutionPolicy RemoteSigned to allow the scripts to run.
  4. 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 `
∙                  -Force

adding windows keys: C:/ProgramData/ssh/

About

my configs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published