Add a few shell aliases

This commit is contained in:
Ivan Kovmir 2023-01-30 22:51:10 +01:00
parent b2098d4fa1
commit cb8a52ac3d
1 changed files with 2 additions and 0 deletions

View File

@ -67,6 +67,7 @@ alias zshrc="$EDITOR ~/.zshrc"
alias xinitrc="$EDITOR ~/.xinitrc"
alias muttrc="$EDITOR ~/.config/neomutt/neomuttrc"
alias viminit="$EDITOR ~/.config/nvim/init.lua"
alias isodate="date --iso-8601"
# Convenience and helpers
alias h="history"
@ -78,3 +79,4 @@ alias cls='echo -ne "\033c"'
alias clearhistory='cat /dev/null > ~/.zsh_history && history -c && exit'
alias sshfs_mount='sshfs -C -o allow_other'
alias pushall='git remote | xargs -L1 git push'
alias serve='python3 -m http.server'