diff --git a/functions/revenv.fish b/functions/revenv.fish deleted file mode 100644 index 137108f..0000000 --- a/functions/revenv.fish +++ /dev/null @@ -1,17 +0,0 @@ -function revenv - echo_progress "Removing previous venv..." - rm -rfi venv - echo - echo_progress "Creating a new venv..." - python -m venv venv - echo - echo_progress "Accessing the new venv..." - source venv/bin/activate.fish - echo - echo_progress "Installing " - echo_highlight "$argv" - pip install $argv - echo - echo_progress "Done!" - echo -end