mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
25 lines
567 B
Bash
25 lines
567 B
Bash
# this is my bashrc config. there are many like it, but this one is mine.
|
|
# shellcheck shell=bash
|
|
|
|
source "$HOME/.dotfiles/config/shared.sh"
|
|
|
|
x-load-configs
|
|
|
|
# shellcheck source=../config/fzf/fzf.bash
|
|
[ -f "${DOTFILES}/config/fzf/fzf.bash" ] &&
|
|
source "${DOTFILES}/config/fzf/fzf.bash"
|
|
|
|
# Import ssh keys in keychain
|
|
ssh-add -A 2>/dev/null
|
|
|
|
x-have oh-my-posh && {
|
|
eval "$(oh-my-posh init bash --config "$DOTFILES/config/omp/own.toml")"
|
|
}
|
|
|
|
. "$XDG_BIN_HOME/asdf/asdf.sh"
|
|
. "$XDG_BIN_HOME/asdf/completions/asdf.bash"
|
|
|
|
x-have antidot && {
|
|
eval "$(antidot init)"
|
|
}
|