this repo has no description
0
fork

Configure Feed

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

Only use nvm in interactive shells

+8 -8
+7 -7
.config/fish/conf.d/50-config.fish
··· 11 11 set -x HOMEBREW_CASK_OPTS "--appdir=~/Applications" 12 12 end 13 13 14 - # Run nvm to update fish_user_paths for npm installs. Allow failure if running 15 - # outside home directory (no .nvmrc found), and run in background to avoid 16 - # blocking the shell from starting 17 - if functions -q nvm 18 - nvm &>/dev/null & || true 19 - end 20 - 21 14 if not set -q DOCKER_NAME; and test -f /etc/profile.d/docker_name.sh 22 15 set -gx DOCKER_NAME (sed -E 's/.*DOCKER_NAME=(.+)/\1/' /etc/profile.d/docker_name.sh) 23 16 end 24 17 25 18 if status is-interactive; and status is-login 19 + # Run nvm to update fish_user_paths for npm installs. Allow failure if running 20 + # outside home directory (no .nvmrc found), and run in background to avoid 21 + # blocking the shell from starting 22 + if functions -q nvm 23 + nvm &>/dev/null & || true 24 + end 25 + 26 26 if command -qs thefuck 27 27 thefuck --alias | source 28 28 end
+1 -1
.config/fish/functions/generate_i95_targets.fish
··· 6 6 end 7 7 set -l dir $argv[1] 8 8 cd $dir/build 9 - make help | sed 's/\.\.\. //' > i95_cmake_targets.txt 9 + make help | sed 's/\.\.\. //' >i95_cmake_targets.txt 10 10 echo "Completed generating i95 targets!" 11 11 end