skynet/shell/bashrc.d/02-plugin-config.sh

22 lines
679 B
Bash

# fzf config
[ -f /usr/share/fzf/completion.bash ] && source /usr/share/fzf/completion.bash
[ -f /usr/share/fzf/key-bindings.bash ] && source /usr/share/fzf/key-bindings.bash
# goto
[ -f ~/skynet/scripts/goto.sh ] && source ~/skynet/scripts/goto.sh
# bash completion
test -e /usr/share/bash-completion/bash_completion && source /usr/share/bash-completion/bash_completion
# colorizer
GRC_ALIASES=true
test -e /etc/profile.d/grc.sh && source /etc/profile.d/grc.sh
# git bash completions
test -e ~/skynet/scripts/git-completion.bash && source ~/skynet/scripts/git-completion.bash
# nvm
test -e ~/.nvm/nvm.sh && source ~/.nvm/nvm.sh
test -e ~/.cargo/env && source ~/.cargo/env