13 lines
324 B
Bash
13 lines
324 B
Bash
# shellcheck shell=bash
|
|
# shellcheck disable=SC2016
|
|
cite about-plugin
|
|
about-plugin 'initialize jump (see https://github.com/gsamokovarov/jump). Add `export JUMP_OPTS=("--bind=z")` to change keybinding'
|
|
|
|
function __init_jump() {
|
|
if _command_exists jump; then
|
|
eval "$(jump shell bash "${JUMP_OPTS[@]}")"
|
|
fi
|
|
}
|
|
|
|
__init_jump
|