diff options
author | William Carroll <wpcarro@gmail.com> | 2019-03-23T16·36+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-03-23T16·36+0000 |
commit | 7167764622d231da33239293925caa3e940721c7 (patch) | |
tree | b4a437a8887f29ba32dc58bf8279b9efc55ca485 /configs/shared/zsh/aliases.zsh | |
parent | 7bcfa26f515c8f82a49510834fda0f029e33f48f (diff) |
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.
Diffstat (limited to 'configs/shared/zsh/aliases.zsh')
-rw-r--r-- | configs/shared/zsh/aliases.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/shared/zsh/aliases.zsh b/configs/shared/zsh/aliases.zsh index 30497a05fc80..72bf95373ec8 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 <leader>e* kbds in vim alias ev='e ~/.config/nvim/init.vim' |