# HG changeset patch # User Meredith Howard # Date 1683066709 18000 # Node ID c6d7ac40bd3c3fa75e77d79ff0b461227c0f73c1 # Parent 902c7d44ab231b005ccb053915f3182338b3f847 move stubs to own location diff --git a/.bashrc b/.bashrc --- a/.bashrc +++ b/.bashrc @@ -7,7 +7,7 @@ fi source ~/.lib/sh/path.bash -for DIR in bin .cargo/bin .local/bin go/bin; do +for DIR in bin .cargo/bin .local/bin go/bin .lib/stubs; do path-prepend "$HOME/$DIR" done diff --git a/bin/cpm b/.lib/stubs/cpm rename from bin/cpm rename to .lib/stubs/cpm diff --git a/bin/fzf b/.lib/stubs/fzf rename from bin/fzf rename to .lib/stubs/fzf diff --git a/bin/gotags b/.lib/stubs/gotags rename from bin/gotags rename to .lib/stubs/gotags diff --git a/bin/gum b/.lib/stubs/gum rename from bin/gum rename to .lib/stubs/gum diff --git a/bin/just b/.lib/stubs/just rename from bin/just rename to .lib/stubs/just diff --git a/bin/pg_format b/.lib/stubs/pg_format rename from bin/pg_format rename to .lib/stubs/pg_format diff --git a/bin/pry b/.lib/stubs/pry rename from bin/pry rename to .lib/stubs/pry diff --git a/bin/rdbg b/.lib/stubs/rdbg rename from bin/rdbg rename to .lib/stubs/rdbg diff --git a/bin/scdoc b/.lib/stubs/scdoc rename from bin/scdoc rename to .lib/stubs/scdoc diff --git a/bin/shfmt b/.lib/stubs/shfmt rename from bin/shfmt rename to .lib/stubs/shfmt diff --git a/bin/stow b/.lib/stubs/stow rename from bin/stow rename to .lib/stubs/stow diff --git a/bin/tectonic b/.lib/stubs/tectonic rename from bin/tectonic rename to .lib/stubs/tectonic diff --git a/.zshenv b/.zshenv --- a/.zshenv +++ b/.zshenv @@ -1,2 +1,2 @@ typeset -U path manpath -path[1,0]=(~/bin ~/.cargo/bin ~/.local/bin ~/go/bin ~/.nimble/bin) +path[1,0]=(~/.lib/stubs ~/bin ~/.cargo/bin ~/.local/bin ~/go/bin ~/.nimble/bin)