global/shell: improve sudo alias

The space at the end tells bash/zsh to expand further aliases
This commit is contained in:
Infinidoge 2024-03-27 02:24:59 -04:00
parent 54537fb7b4
commit 6ae2304047
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A

View file

@ -92,7 +92,8 @@ in
environment.shellAliases = config.universe.shellAliases // {
# sudo
s = ifSudo "sudo -E ";
sudo = ifSudo "sudo -E ";
s = ifSudo "sudo ";
si = ifSudo "sudo -i";
se = ifSudo "sudoedit";