Added boundaries support

This commit is contained in:
pauljako 2024-08-30 12:02:21 +02:00 committed by GitHub
parent 2d84b6f75b
commit 576d7f59d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

11
.zshrc
View file

@ -84,8 +84,8 @@ zinit light zsh-users/zsh-autosuggestions
#
# Load the zsh completion system
autoload -U compinit && compinit
# Initialize Zoxide if it exists
#
# Initialize Zoxide if it exists
if command -v zoxide &> /dev/null
then
eval "$(zoxide init --cmd cd zsh)"
@ -97,6 +97,15 @@ then
eval "$(thefuck --alias)"
fi
#
# Add boundaries to the path if it exists
if [ -f "$HOME/.bndpath" ]
then
PATH="$(cat $HOME/.bndpath)/exec/bin:$PATH"
elif [ -d "$HOME/boundaries" ]
then
PATH="$HOME/boundaries/exec/bin:$PATH"
fi
#
# Colored ls
alias ls="ls --color=auto"
#