Migrate everything to GNU Stow locations instead of homeshick
This commit is contained in:
parent
54587a49ff
commit
82c930f4d5
24 changed files with 1 additions and 5 deletions
17
.zsh/login/path
Normal file
17
.zsh/login/path
Normal file
|
@ -0,0 +1,17 @@
|
|||
#! zsh
|
||||
|
||||
path=(/usr/local/bin $path)
|
||||
if whence brew >/dev/null; then
|
||||
path=(
|
||||
/usr/local/opt/coreutils/libexec/gnubin
|
||||
/usr/local/sbin
|
||||
~/Library/Python/*/bin
|
||||
$path
|
||||
)
|
||||
fi
|
||||
|
||||
path=(/usr/local/texlive/20*/bin/universal-* $path)
|
||||
path=(~/bin ~/.bin ~/.local/bin $path)
|
||||
|
||||
# filter out duplicates, nonexistent directories, and . (the current directory)
|
||||
path=(${(u)^path:#.}(N))
|
Loading…
Add table
Add a link
Reference in a new issue