17 lines
244 B
Bash
17 lines
244 B
Bash
[[ "$-" != *i* ]] && return
|
|
|
|
set -o vi
|
|
|
|
FZF_ALT_C_OPTS=--walker=dir,follow
|
|
. /usr/share/fzf/key-bindings.bash
|
|
|
|
shopt -s autocd
|
|
|
|
for f in "$HOME/.config/bash/"*.bash; do
|
|
# shellcheck disable=SC1090
|
|
. "$f"
|
|
done
|
|
unset f
|
|
|
|
stty werase undef
|