mirror of
https://github.com/Matir/skel.git
synced 2026-05-25 21:19:09 -07:00
Update for bundles
This commit is contained in:
@@ -30,5 +30,8 @@ if status --is-interactive
|
||||
install_fisher
|
||||
end
|
||||
|
||||
# Want this at the bottom to put this path first
|
||||
# Want these at the bottom to put them first in PATH
|
||||
fish_add_path --move --path {$HOME}/bin
|
||||
if test (uname) = "Darwin"
|
||||
fish_add_path --move --path {$HOME}/bin/macos
|
||||
end
|
||||
|
||||
@@ -189,6 +189,7 @@ if [ "$(uname)" = "Darwin" ] ; then
|
||||
# Using id -u for better POSIX compatibility than $UID
|
||||
export XDG_RUNTIME_DIR="${XDG_RUNTIME_DIR:-$TMPDIR/runtime-$(id -u)}"
|
||||
export XDG_STATE_HOME="${XDG_STATE_HOME:-$HOME/.local/state}"
|
||||
export PATH="${HOME}/bin/macos:${PATH}"
|
||||
fi
|
||||
|
||||
if test -e "$HOME/.localenv"; then
|
||||
|
||||
@@ -271,8 +271,11 @@ if [ -x /usr/bin/ack-grep ] ; then
|
||||
alias ack='/usr/bin/ack-grep'
|
||||
fi
|
||||
|
||||
# I want this first always
|
||||
# I want these first always
|
||||
PATH="${HOME}/bin:${PATH}"
|
||||
if [[ "$(uname)" == "Darwin" ]]; then
|
||||
PATH="${HOME}/bin/macos:${PATH}"
|
||||
fi
|
||||
|
||||
# Load any local settings
|
||||
source_if_existing $HOME/.zshrc.local
|
||||
|
||||
Reference in New Issue
Block a user