From 49e9459236f42020bee4baca70fa7317d72acfed Mon Sep 17 00:00:00 2001 From: chawley Date: Sun, 18 Feb 2024 14:20:02 -0500 Subject: [PATCH] Updated PATH and added .zcompdump directory location --- config - zshrc.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config - zshrc.md b/config - zshrc.md index 0e23d4e..b65edbe 100644 --- a/config - zshrc.md +++ b/config - zshrc.md @@ -7,12 +7,17 @@ I have this in so many places and I need to have a solid reference of a working ```sh # Exports -export PATH=$HOME/bin:/usr/local/bin:$PATH + +export PATH=$HOME/bin:/usr/local/bin:$HOME/.local/bin:$PATH export ZSH="$HOME/.oh-my-zsh" ZSH_THEME="powerlevel10k/powerlevel10k" POWERLEVEL9K_MODE="nerdfont-complete" plugins=(git zsh-autosuggestions zsh-syntax-highlighting) + +# Store `.zcompdump` files in the ZSH cache directory, where they belong +export ZSH_COMPDUMP=$ZSH/cache/completions/.zcompdump-$HOST + source $ZSH/oh-my-zsh.sh # User-defined Aliases and Functions