Files
dotfiles/roles/zsh/files/aliases.zsh
Johannes Knopp 98235a8c18 zsh conf updates
- Add lazygit alias `lg`
- Configure fzf reverse search
2026-04-01 15:02:32 +02:00

23 lines
441 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 "$@"
}
alias lg='lazygit'