refactor: remove autojump

Autojump is a PIA, it's a simple dir tracker with some fancy ranking and
it uses python to accomplish. For some fucking reason the install
process is very difficult and because the author has chosen fucken
PYTHON there's a fuckton of environment issues when jumping systems.
This commit is contained in:
Price Hiller 2022-08-01 02:47:55 -05:00
parent 1b1472eec2
commit 5f2786c2ec
2 changed files with 0 additions and 10 deletions

View File

@ -1,6 +0,0 @@
#compdef j
cur=${words[2, -1]}
autojump --complete ${=cur[*]} | while read i; do
compadd -U "$i";
done

View File

@ -8,10 +8,6 @@ export ZSH_HIGHLIGHT_MAXLENGTH=10000
export ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE=2
export ZSH_AUTOSUGGEST_STRATEGY=(history completion)
### Autojump ###
source "${XDG_DATA_HOME}/autojump/etc/profile.d/autojump.sh"
export PATH="${PATH}:${XDG_DATA_HOME}/autojump/bin"
### FZF ###
function zvm_after_init() {
[[ -r "${XDG_CONFIG_HOME}/fzf/fzf.zsh" ]] && source "${XDG_CONFIG_HOME}/fzf/fzf.zsh"