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