mirror of
https://github.com/itme-brain/bash.git
synced 2026-03-23 09:49:43 -04:00
14 lines
341 B
Bash
14 lines
341 B
Bash
# Use gpg-agent for SSH (YubiKey support)
|
|
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
|
|
# Source prompt and aliases
|
|
BASH_CONFIG_DIR="${BASH_SOURCE%/*}"
|
|
source "$BASH_CONFIG_DIR/prompt"
|
|
source "$BASH_CONFIG_DIR/aliases"
|
|
|
|
# Vi mode
|
|
set -o vi
|
|
|
|
# Completion
|
|
bind 'set completion-ignore-case on'
|
|
bind 'set completion-map-case on'
|