diff options
author | Matt Strapp <matt@mattstrapp.net> | 2023-02-03 16:38:45 -0600 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2023-02-03 16:38:45 -0600 |
commit | 4e29e6f4368bf0972d0234d8838a73748a1db566 (patch) | |
tree | f297f35a422c8e62332646b10222967f57e73621 /zsh | |
parent | Allow shell integration with VSCode and others (diff) | |
download | dotfiles-4e29e6f4368bf0972d0234d8838a73748a1db566.tar dotfiles-4e29e6f4368bf0972d0234d8838a73748a1db566.tar.gz dotfiles-4e29e6f4368bf0972d0234d8838a73748a1db566.tar.bz2 dotfiles-4e29e6f4368bf0972d0234d8838a73748a1db566.tar.lz dotfiles-4e29e6f4368bf0972d0234d8838a73748a1db566.tar.xz dotfiles-4e29e6f4368bf0972d0234d8838a73748a1db566.tar.zst dotfiles-4e29e6f4368bf0972d0234d8838a73748a1db566.zip |
Add .local/bin to PATH
Diffstat (limited to '')
-rw-r--r-- | zsh/.config/zsh/.zshrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index fbc94cb..46cf9a7 100644 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -1,9 +1,9 @@ - - # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.config/zsh/.zshrc. # Initialization code that may require console input (password prompts, [y/n] # confirmations, etc.) must go above this block; everything else may go below. [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]] && source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" +# add .local/bin to PATH +export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}" eval "$(antidot init)" eval "$(lesspipe.sh)" |