Added boundaries support
This commit is contained in:
parent
2d84b6f75b
commit
576d7f59d9
1 changed files with 10 additions and 1 deletions
11
.zshrc
11
.zshrc
|
@ -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"
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue