summaryrefslogtreecommitdiff
path: root/dot_config/private_fish/plug
diff options
context:
space:
mode:
authorChloe Kudryavtsev <toast@toast.cafe>2021-05-06 12:23:36 -0400
committerChloe Kudryavtsev <toast@toast.cafe>2021-05-06 12:23:36 -0400
commita6e0fadf068f0623c7ef6d70f0949f479044a6cc (patch)
treee5bdbd729530ca6dbe04f39f47130ddd387235df /dot_config/private_fish/plug
parentadd two new fish plugins (diff)
fish: make docker plugin less likely to fail
Diffstat (limited to '')
-rw-r--r--dot_config/private_fish/plug/docker.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/dot_config/private_fish/plug/docker.fish b/dot_config/private_fish/plug/docker.fish
index 50cabc2..46131d8 100644
--- a/dot_config/private_fish/plug/docker.fish
+++ b/dot_config/private_fish/plug/docker.fish
@@ -2,6 +2,6 @@ type -qf podman
and alias docker podman
if type -q docker
- alias dit 'docker run --rm -it'
+ alias dit 'docker run -it --rm'
alias drun 'dit -v (pwd):/pwd:Z -w /pwd'
end