From 9911a009d9cea4a7859825b6344166773cc71b84 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Fri, 13 Sep 2024 00:37:08 -0700 Subject: [PATCH 1/2] zsh: add zsh-bd --- .zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.zshrc b/.zshrc index d5ac516..1ecff9f 100644 --- a/.zshrc +++ b/.zshrc @@ -66,6 +66,7 @@ ${SKIP_PLUGINS:-false} || { zinit load "jeffreytse/zsh-vi-mode" zinit load "zsh-users/zsh-history-substring-search" zinit load "zsh-users/zsh-completions" + zinit load "Tarrasch/zsh-bd" if ! command -v zoxide &> /dev/null || ${SKIP_ZOXIDE:-false}; then zinit load "agkozak/zsh-z" fi From 3d4447558366d36a63e82eec07e947b68e94ec16 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Mon, 16 Sep 2024 00:50:20 -0700 Subject: [PATCH 2/2] env: prepend local bin path --- .config/shell/env | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.config/shell/env b/.config/shell/env index cc4d6d6..0441a02 100644 --- a/.config/shell/env +++ b/.config/shell/env @@ -41,13 +41,11 @@ fi ## PATH MODIFICATION # add local bin path and shell bin path to PATH -path_append "$LOCAL_HOME/bin" +path_prepend "$LOCAL_HOME/bin" # add shell bin files path_append "$SHELL_CONFIG_DIR/bin" # add doom emacs bin folder to path if it exists path_append "$CONFIG_HOME/emacs/bin" -# add nixvim path if it exists -path_prepend "/home/blake/code/nixvim-config/result/bin" export PATH