Update dotfiles (2026-03-03 22:48:21)

This commit is contained in:
Zacharias-Brohn
2026-03-03 22:48:21 +01:00
parent 82feed13af
commit 6fb1c7d1a2
57 changed files with 98 additions and 54 deletions
Regular → Executable
+24
View File
@@ -8,3 +8,27 @@ 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