bash/bashrc
2026-03-09 20:15:35 -04:00

11 lines
237 B
Bash

# 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'