From afddee4ea8c341ecdb7b15cbf5b528956cd18e06 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Wed, 25 Nov 2020 12:29:53 +0100 Subject: zshrc: drop mount/umount aliases, use aliases for make, git, vim --- .zsh/zshrc/30_aliases | 6 ++++-- 1 file 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' -- cgit v1.2.3-54-g00ecf