Update dotfiles

This commit is contained in:
2024-02-15 16:58:41 -04:00
parent fb3e854a3a
commit 383af5728b
2 changed files with 220 additions and 188 deletions

View File

@ -42,4 +42,22 @@ Set-Alias -Name cat -Value bat
if (Test-Path alias:ls) {
Remove-Alias -Name ls
}
Set-Alias -Name ls -Value exa
Set-Alias -Name ls -Value exa
# Replace cd with zoxide
if (Test-Path alias:cd) {
Remove-Alias -Name cd
}
Set-Alias -Name cd -Value zoxide
# Replace grep with ugrep
if (Test-Path alias:grep) {
Remove-Alias -Name grep
}
Set-Alias -Name grep -Value ugrep
# Add alias for recycle-bin
if (Test-Path alias:rb) {
Remove-Alias -Name rb
}
Set-Alias -Name rb -Value recycle-bin