35 lines
1.3 KiB
Plaintext
Executable File
35 lines
1.3 KiB
Plaintext
Executable File
# -----------------------------------------------------
|
|
# INIT
|
|
# -----------------------------------------------------
|
|
# -----------------------------------------------------
|
|
# Exports
|
|
# -----------------------------------------------------
|
|
export EDITOR=nvim
|
|
export PATH="/usr/lib/ccache/bin/:$HOME/tools/lua-language-server/:$PATH:/home/zach/.npm-g/bin"
|
|
export PYTHONPATH="/home/zach/.local/lib/python3.12/site-packages"
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
|
|
# -----------------------------------------------------
|
|
# Binary Init
|
|
# -----------------------------------------------------
|
|
|
|
# bun
|
|
export BUN_INSTALL="$HOME/.bun"
|
|
export PATH="$BUN_INSTALL/bin:$PATH"
|
|
export MANPATH=$HOME/tools/ripgrep/doc/man:$MANPATH
|
|
export FPATH=$HOME/tools/ripgrep/complete:$FPATH
|
|
[ -s "/home/zach/.bun/_bun" ] && source "/home/zach/.bun/_bun"
|
|
|
|
## [Completion]
|
|
[[ -f /home/zach/.config/.dart-cli-completion/zsh-config.zsh ]] && . /home/zach/.config/.dart-cli-completion/zsh-config.zsh || true
|
|
|
|
# Node
|
|
export NVM_DIR="$HOME/.config/nvm"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
|
|
# Created by `pipx` on 2024-10-06 12:51:05
|
|
export PATH="/home/zach/.local/bin:$PATH"
|
|
|
|
[ -f /opt/miniconda3/etc/profile.d/conda.sh ] && source /opt/miniconda3/etc/profile.d/conda.sh
|