From 8215f1ebbd5e65c5b6329b95c56f1ced379f38c2 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Mon, 3 Oct 2022 21:47:32 +0100 Subject: [PATCH] In WSL use op.exe as op if found --- zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zshrc b/zshrc index 80a2762..d66c357 100644 --- a/zshrc +++ b/zshrc @@ -185,6 +185,8 @@ command -v ssh &> /dev/null && \ alias ssh='TERM=xterm-256color ssh' alias weather="curl wttr.in" alias cls="clear && printf '\e[3J'" +command -v op.exe &> /dev/null && \ + alias op="`command -v op.exe`" case `uname` in Linux)