···1111 set -x HOMEBREW_CASK_OPTS "--appdir=~/Applications"
1212end
13131414-# Run nvm to update fish_user_paths for npm installs. Allow failure if running
1515-# outside home directory (no .nvmrc found), and run in background to avoid
1616-# blocking the shell from starting
1717-if functions -q nvm
1818- nvm &>/dev/null & || true
1919-end
2020-2114if not set -q DOCKER_NAME; and test -f /etc/profile.d/docker_name.sh
2215 set -gx DOCKER_NAME (sed -E 's/.*DOCKER_NAME=(.+)/\1/' /etc/profile.d/docker_name.sh)
2316end
24172518if status is-interactive; and status is-login
1919+ # Run nvm to update fish_user_paths for npm installs. Allow failure if running
2020+ # outside home directory (no .nvmrc found), and run in background to avoid
2121+ # blocking the shell from starting
2222+ if functions -q nvm
2323+ nvm &>/dev/null & || true
2424+ end
2525+2626 if command -qs thefuck
2727 thefuck --alias | source
2828 end
+1-1
.config/fish/functions/generate_i95_targets.fish
···66 end
77 set -l dir $argv[1]
88 cd $dir/build
99- make help | sed 's/\.\.\. //' > i95_cmake_targets.txt
99+ make help | sed 's/\.\.\. //' >i95_cmake_targets.txt
1010 echo "Completed generating i95 targets!"
1111end