dotfiles/.bashrc
2024-06-23 11:51:38 +02:00

20 lines
363 B
Bash

[[ $- != *i* ]] && return
set -o vi
shopt -s autocd progcomp_alias
FZF_ALT_C_OPTS=--walker=dir,follow
. /usr/share/fzf/key-bindings.bash
for f in "$HOME/.config/bash/"*.bash; do
# shellcheck disable=SC1090
. "$f"
done
complete -r -D
for f in kill kubectl git; do
# shellcheck disable=SC1090
. "/usr/share/bash-completion/completions/$f"
done