diff options
author | self <self@sateoki.xyz> | 2022-02-21 12:19:38 +0000 |
---|---|---|
committer | self <self@sateoki.xyz> | 2022-02-21 12:19:38 +0000 |
commit | 8afdc748986f4304d0f46210c8db5a814bd44a87 (patch) | |
tree | 51321f2d9535d7f4db91eecc816485c6bc0dc076 /zsh | |
parent | ca86889c0efecbaa59d55e8168a547a2a2e2b1fd (diff) |
Added sudo alias to allow carrying aliases into sudo
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -41,6 +41,9 @@ PS1='[%F{#1111ee}%1d%f] => ' PROMPT=$PS1 ########## Aliases / Functions ########## +# allow sudo to make use of aliases +alias sudo="sudo " + # ls / exa alias ls='ls -a --color=always' alias e="exa -a --header --long --git --time-style=long-iso" |