dotfiles/win/oh-my-posh.ps1

11 lines
460 B
PowerShell
Raw Normal View History

2021-01-14 04:56:57 +00:00
# curl: https://curl.se/windows/
# ag: https://github.com/k-takata/the_silver_searcher-win32/releases
# fzf: https://github.com/junegunn/fzf/releases/latest
Install-Module -Name PowerShellGet -Force -AllowPrerelease
Install-Module -Name posh-git
Install-Module -Name oh-my-posh
Install-Module -Name psfzf
2021-01-13 15:20:59 +00:00
$dotfiles=(Get-Item $PSScriptRoot).Parent.FullName
New-Item -ItemType SymbolicLink -Target $dotfiles\win\profile.ps1 -Path $profile -Force