Per recommendations from @nwinkler, allow the jump test to fail silently. This helps in cases where users are SSH'ing in, or for some other reason are using bash-it environment on a foreign machine.
10 lines
197 B
Bash
Executable File
10 lines
197 B
Bash
Executable File
cite about-plugin
|
|
about-plugin 'initialize jump (see https://github.com/gsamokovarov/jump)'
|
|
|
|
__init_jump() {
|
|
command -v jump &> /dev/null || return
|
|
eval "$(jump shell --bind=z)"
|
|
}
|
|
|
|
__init_jump
|