summaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorself <self@sateoki.xyz>2022-02-21 12:19:38 +0000
committerself <self@sateoki.xyz>2022-02-21 12:19:38 +0000
commit8afdc748986f4304d0f46210c8db5a814bd44a87 (patch)
tree51321f2d9535d7f4db91eecc816485c6bc0dc076 /zsh
parentca86889c0efecbaa59d55e8168a547a2a2e2b1fd (diff)
Added sudo alias to allow carrying aliases into sudo
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.zshrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 2240139..a71a22a 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -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"