zsh: add ${HOME}/.local/opt/bin to path

I put language servers there for now
This commit is contained in:
tastytea 2022-08-10 21:24:43 +02:00
parent c748569a5a
commit 186544c088
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM

View File

@ -3,7 +3,7 @@ function() # Keep local variables in here.
############################## Paths ########################################### ############################## Paths ###########################################
path=(${HOME}/.local/bin ${path} ${HOME}/bin) path=(${HOME}/.local/bin ${path} ${HOME}/bin ${HOME}/.local/opt/bin)
path=(${(u)path}) path=(${(u)path})
export HISTFILE="${ZDOTDIR}/.zsh_history" export HISTFILE="${ZDOTDIR}/.zsh_history"
export ZSH_CACHE_DIR="${XDG_CACHE_HOME:-${HOME}/.cache}/zsh" export ZSH_CACHE_DIR="${XDG_CACHE_HOME:-${HOME}/.cache}/zsh"