mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
15 lines
357 B
Bash
Executable File
15 lines
357 B
Bash
Executable File
# this is my bashrc config. there are many like it, but this one is mine.
|
|
# shellcheck shell=bash
|
|
|
|
# Defaults
|
|
export DOTFILES="$HOME/.dotfiles"
|
|
export DOTFILES_SHARED_LOADED=""
|
|
# shellcheck source=scripts/shared.sh
|
|
source "$DOTFILES/scripts/shared.sh"
|
|
path_prepend "$DOTFILES/local/bin"
|
|
|
|
x-load-configs
|
|
|
|
# Import ssh keys in keychain
|
|
ssh-add -A 2>/dev/null
|