From 7167764622d231da33239293925caa3e940721c7 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sat, 23 Mar 2019 16:36:34 +0000 Subject: [PATCH] Support aptitude removals If you're going to install things and support that with an aliases, might as well support the removals of packages with an aliases. Better to keep systems lean -- especially if entropy is the tendancy. --- configs/shared/zsh/aliases.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/shared/zsh/aliases.zsh b/configs/shared/zsh/aliases.zsh index 30497a05f..72bf95373 100644 --- a/configs/shared/zsh/aliases.zsh +++ b/configs/shared/zsh/aliases.zsh @@ -133,6 +133,7 @@ alias nls='nix-env --query' # Aptitude (apt) alias apti='sudo apt-get install' +alias aptrm='sudo apt remove' # couple the e* aliases to the e* kbds in vim alias ev='e ~/.config/nvim/init.vim'