dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 5c0538294d5d9caa6243bbf5018b4665cc61e759 27 lines 533 B view raw
1export PATH=$HOME/.local/bin:$PATH 2 3# homebrew 4eval "$(/opt/homebrew/bin/brew shellenv)" 5 6# Rust 7. "$HOME/.cargo/env" 8 9# bob-nvim 10export PATH=$HOME/.local/share/bob/nvim-bin:$PATH 11 12# bun 13export BUN_INSTALL=$HONE/.bun 14export PATH=$BUN_INSTALL/bin:$PATH 15 16# luarocks 17## set LUA_PATH and LUA_CPATH 18command -v luarocks &> /dev/null && eval $(luarocks path --no-bin) 19## set PATH 20export PATH=$HOME/.luarocks/bin:$PATH 21 22 23 24 25################ BOTTOM ################ 26# load .zshrc when interactive (ssh) 27[[ -o interactive ]] && source ~/.zshrc