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

22 lines
679 B
Bash
Raw Normal View History

2022-04-07 19:41:00 -05:00
# 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
2022-04-14 08:34:08 -05:00
test -e /usr/share/grc/grc.sh && source /usr/share/grc/grc.sh
2022-04-07 19:41:00 -05:00
# 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