diff options
-rw-r--r-- | .zshrc | 8 | ||||
-rwxr-xr-x | build | 10 |
2 files changed, 9 insertions, 9 deletions
@@ -1,5 +1,6 @@ typeset -U PATH path -path=( "$HOME/bin" +export path=( + "$HOME/bin" "$HOME/.local/bin" "$HOME/.cargo/bin" "/bin" @@ -15,9 +16,8 @@ path=( "$HOME/bin" "/nix/var/nix/profiles/default/bin" "/run/current-system/sw/bin" ) -export PATH -EDITOR=vim -export EDITOR +export EDITOR=vim +export BROWSER=firefox autoload -Uz compinit compinit @@ -8,33 +8,33 @@ mkdir "$HOME/bin" # dwm setup DWM_DIR="$HOME/src/dwm" -git clone https://git.tombarrett.xyz/git/dwm "$DWM_DIR" +git clone https://git.tombarrett.xyz/dwm "$DWM_DIR" ln -s "$RC_DIR/config/dwm.h" "$DWM_DIR/config.h" make -C "$DWM_DIR" ln -s "$DWM_DIR/dwm" "$HOME/bin" # dwmstatus setup DWMSTS_DIR="$HOME/src/dwmstatus" -git clone https://git.tombarrett.xyz/git/dwmstatus "$DWMSTS_DIR" +git clone https://git.tombarrett.xyz/dwmstatus "$DWMSTS_DIR" make -C "$DWMSTS_DIR" ln -s "$DWMSTS_DIR/dwmstatus" "$HOME/bin" # st setup ST_DIR="$HOME/src/st" -git clone https://git.tombarrett.xyz/git/st "$ST_DIR" +git clone https://git.tombarrett.xyz/st "$ST_DIR" ln -s "$RC_DIR/config/st.h" "$ST_DIR/config.h" make -C "$ST_DIR" ln -s "$ST_DIR/st" "$HOME/bin" # pinentry-dmenu setup PE_DIR="$HOME/src/pinentry-dmenu" -git clone https://git.tombarrett.xyz/git/pinentry-dmenu "$PE_DIR" +git clone https://git.tombarrett.xyz/pinentry-dmenu "$PE_DIR" make -C "$PE_DIR" ln -s "$PE_DIR/pinentry-dmenu" "$HOME/bin" # wallpapers setup mkdir -p "$HOME/personal" -git clone https://git.tombarrett.xyz/git/wallpapers "$HOME/personal/wallpapers" +git clone https://git.tombarrett.xyz/wallpapers "$HOME/personal/wallpapers" mkdir -p "$HOME/.config/" |