1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-04-06 20:57:47 +08:00
This commit is contained in:
codebitlab 2026-03-06 06:17:27 -05:00 committed by GitHub
commit f2a3a07ae5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -135,4 +135,6 @@ function apt-list-packages {
grep -v deinstall | \
sort -n | \
awk '{print $1" "$2}'
# Install package with recommended AND suggested packages
alias apti='apt install -o APT::Install-Recommends="true" -o APT::Install-Suggests="true"'
}