this repo has no description
0
fork

Configure Feed

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

Add coreutils to brewfile

Fix error when trying to run nvm in non-~ directories.

+7 -3
+3
.Brewfile
··· 94 94 # Cross-platform make 95 95 brew "cmake" 96 96 97 + # GNU File, Shell, and Text utilities 98 + brew "coreutils" 99 + 97 100 # Reimplementation of ctags(1) 98 101 brew "ctags" 99 102
+3 -2
.config/fish/config.fish
··· 1 1 # Set fish_user_paths here instead of fish_variables to expand $HOME per-machine 2 2 set -U fish_user_paths ~/.cargo/bin 3 3 4 - # Run nvm to update fish_user_paths for npm installs 5 - nvm 4 + # Run nvm to update fish_user_paths for npm installs. Allow failure if running 5 + # outside home directory (no .nvmrc found) 6 + nvm || true 6 7 7 8 if not set -q DOCKER_NAME; and test -f /etc/profile.d/docker_name.sh 8 9 set -gx DOCKER_NAME (sed -E 's/.*DOCKER_NAME=(.+)/\1/' /etc/profile.d/docker_name.sh)
+1 -1
.gitconfig
··· 40 40 [submodule] 41 41 recurse = true 42 42 [push] 43 - recurseSubmodules = check 43 + recurseSubmodules = on-demand 44 44 [pull] 45 45 rebase = false