refactor: set autojump back to env

This commit is contained in:
Price Hiller 2022-07-31 01:38:00 -05:00
parent 09f1034ef2
commit 9890b200c9
2 changed files with 4 additions and 2 deletions

View File

@ -2,8 +2,6 @@
# omz directory :(
configure() {
### Autojump ###
source "${HOME}/.local/share/autojump/etc/profile.d/autojump.sh"
plugins=(
git

View File

@ -8,6 +8,10 @@ export ZSH_HIGHLIGHT_MAXLENGTH=10000
export ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE=2
export ZSH_AUTOSUGGEST_STRATEGY=(history completion)
### Autojump ###
source "${HOME}/.local/share/autojump/etc/profile.d/autojump.sh"
export PATH="${PATH}:${HOME}/.local/share/autojump/bin"
### FZF ###
[[ -f "${HOME}/.config/fzf/fzf.zsh" ]] && source "${HOME}/.config/fzf/fzf.zsh"
export FZF_DEFAULT_COMMAND='fd --hidden --exclude .git --color=always'