diff --git a/.config/fish/functions/sudo.fish b/.config/fish/functions/sudo.fish new file mode 100644 index 0000000..d87e869 --- /dev/null +++ b/.config/fish/functions/sudo.fish @@ -0,0 +1,7 @@ +function sudo + if type -q sudo-rs + command sudo-rs $argv + else + command sudo $argv + end +end