fix: defer direnv hook

This commit is contained in:
Price Hiller 2022-08-02 16:14:26 -05:00
parent 7a112ad58b
commit b5af356cec

View File

@ -8,12 +8,10 @@ export ZSH_HIGHLIGHT_MAXLENGTH=10000
export ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE=2 export ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE=2
export ZSH_AUTOSUGGEST_STRATEGY=(history completion) export ZSH_AUTOSUGGEST_STRATEGY=(history completion)
### Direnv ###
eval "$(direnv hook zsh)"
### FZF ### ### FZF ###
function zvm_after_init() { function zvm_after_init() {
[[ -r "${HOME}/.config/fzf/fzf.zsh" ]] && source "${HOME}/.config/fzf/fzf.zsh" [[ -r "${XDG_DATA_CONFIG}/fzf/fzf.zsh" ]] && source "${XDG_DATA_CONFIG}fzf/fzf.zsh"
} }
export FZF_DEFAULT_COMMAND='fd --hidden --exclude .git --color=always' export FZF_DEFAULT_COMMAND='fd --hidden --exclude .git --color=always'
export FZF_DEFAULT_OPTS="--height=80% --layout=reverse --info=inline --border --margin=1 --ansi" export FZF_DEFAULT_OPTS="--height=80% --layout=reverse --info=inline --border --margin=1 --ansi"
@ -89,6 +87,9 @@ export PATH="${PATH}:${CARGO_HOME}/bin"
## Dotnet ### ## Dotnet ###
export PATH="${PATH}:${XDG_DATA_HOME}/dotnet" export PATH="${PATH}:${XDG_DATA_HOME}/dotnet"
### Direnv ###
eval "$(direnv hook zsh)"
### Terminal Specific ### ### Terminal Specific ###
# If using the kitty terminal we want to set our TERM var to be xterm as kitty will send # If using the kitty terminal we want to set our TERM var to be xterm as kitty will send
# kitty-xterm which causes a fucking headache and a half due to ncurses not containing # kitty-xterm which causes a fucking headache and a half due to ncurses not containing