mirror of
https://github.com/guilhermewerner/dotfiles
synced 2025-06-14 10:24:20 +00:00
31 lines
515 B
PowerShell
31 lines
515 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
# Shell
|
|
|
|
New-Item -Type Directory $home/Documents/PowerShell
|
|
Copy-Item ./Config/Microsoft.PowerShell_profile.ps1 $home/Documents/PowerShell
|
|
New-Item -Type Directory $home/.config
|
|
Copy-Item ./Config/starship.toml $home/.config
|
|
winget install starship
|
|
|
|
# Scoop
|
|
|
|
iwr -useb get.scoop.sh | iex
|
|
|
|
# Tools
|
|
|
|
scoop install neofetch
|
|
|
|
cargo install --force `
|
|
bat `
|
|
cbindgen `
|
|
du-dust `
|
|
fd-find `
|
|
grex `
|
|
naga-cli `
|
|
procs `
|
|
ripgrep `
|
|
sd `
|
|
tokei `
|
|
wasm-bindgen-cli
|