diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2020-11-25 12:29:53 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2020-11-25 12:29:53 +0100 |
commit | afddee4ea8c341ecdb7b15cbf5b528956cd18e06 (patch) | |
tree | 0a1c7868579597fea5bef5114903c88384aeaa0f | |
parent | 5727f0662bb1e8b1b3808b1bc03ac1481f8cf677 (diff) |
zshrc: drop mount/umount aliases, use aliases for make, git, vim
-rw-r--r-- | .zsh/zshrc/30_aliases | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index bb64e0d..a099aee 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -19,8 +19,10 @@ alias cal='cal -m' alias egrep='egrep --color=auto' alias grep='grep --color=auto' alias ip='ip -color=auto' -alias m='mount' -alias u='umount' +# most often used commands from top10 +alias m='make' +alias g='git' +alias v='vim' # show history with timestamps (taken from oh-my-zsh) alias history='fc -El 1' |