From ff8ea83cbc20ba73250437856fd6e87db4bb0d23 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Tue, 5 Dec 2023 17:46:41 -0700 Subject: [PATCH] Add "ve" command to fish. Useful for Python environment management. Or I should start using pipx... --- fish/functions/ve.fish | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 fish/functions/ve.fish diff --git a/fish/functions/ve.fish b/fish/functions/ve.fish new file mode 100644 index 0000000..514bd04 --- /dev/null +++ b/fish/functions/ve.fish @@ -0,0 +1,3 @@ +function ve + source ve/bin/activate.fish +end