๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

rename variables for ensure_path script

kacaii 28afd4fa 3ccf5f8d

+3 -3
+3 -3
.config/fish/modules/path.fish
··· 1 - set -l ensure_fish_add_path \ 1 + set -l path_list \ 2 2 $HOME/.bun/bin \ 3 3 $HOME/.cargo/bin \ 4 4 $HOME/.fly/bin \ ··· 9 9 /home/linuxbrew/.linuxbrew/sbin \ 10 10 /snap/bin 11 11 12 - for required_path in $ensure_fish_add_path 13 - fish_add_path $required_path 12 + for directory in $path_list 13 + fish_add_path $directory 14 14 end