diff options
| author | Max Bossing <info@maxbossing.de> | 2025-07-20 12:34:52 +0200 | 
|---|---|---|
| committer | Max Bossing <info@maxbossing.de> | 2025-07-20 12:34:52 +0200 | 
| commit | e708e9c01d5efbc55bfd488bd6f3bb223ef48a2b (patch) | |
| tree | d169c98d77dce5aeca156a0b0088257d81120144 /fish/config.fish | |
| parent | 2ab8acf844971fba527a24945697235f2aca4231 (diff) | |
set PATH Variables correctly - fish_add_path wouldn't work for me
Diffstat (limited to 'fish/config.fish')
| -rw-r--r-- | fish/config.fish | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/fish/config.fish b/fish/config.fish index dc13d20..53a39a0 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -1,8 +1,8 @@  set EDITOR 'nvim'  set VISUAL 'nvim' -set PATH "$PATH:/home/max/.cargo/bin" -set PATH "$PATH:/home/max/.local/bin" +set -x PATH "$HOME/.cargo/bin" $PATH +set -x PATH "$HOME/.local/bin" $PATH  set fish_greeting  export TERM=xterm-256color @@ -58,7 +58,6 @@ function serve    python3 -m http.server -d "$path" port  end -clear  starship init fish | source | 
