From c29ee883f7f741d4ed9d2900eda6735cd74c54ef Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Mon, 8 Feb 2021 09:48:44 -0300 Subject: [PATCH] Fixed the way Fish expects path variables --- fish/conf.d/cargo.fish | 2 +- fish/conf.d/poetry.fish | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 fish/conf.d/poetry.fish diff --git a/fish/conf.d/cargo.fish b/fish/conf.d/cargo.fish index a3603cc..f8dc641 100644 --- a/fish/conf.d/cargo.fish +++ b/fish/conf.d/cargo.fish @@ -1 +1 @@ -export PATH="$HOME/.cargo/bin:$PATH" +set PATH $HOME/.cargo/bin $PATH diff --git a/fish/conf.d/poetry.fish b/fish/conf.d/poetry.fish new file mode 100644 index 0000000..c4fb14b --- /dev/null +++ b/fish/conf.d/poetry.fish @@ -0,0 +1 @@ +set PATH $HOME/.poetry/bin $PATH