Files
dotfiles/roles/zsh/files/aliases.zsh
2025-09-07 20:17:11 +02:00

21 lines
421 B
Bash
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

alias vim='nvim'
alias tp='trash-put'
alias tl='trash-list'
alias szrc='source ~/.zshrc'
alias zrc="vim ~/.zshrc"
alias dotf='vim ~/dotfiles/'
# TODO relative path
alias hyprconf='vim ~/dotfiles/roles/hyprland/files/hypr/hyprland.conf'
alias ls='eza'
rm() {
print " Consider using trash-put instead of rm"
print "➡️ Running: trash-put $*"
print "⚠️ To use real rm, use /bin/rm"
trash-put "$@"
}