chore: add zsh config and exports

This commit is contained in:
2024-11-11 14:09:06 +01:00
parent 21911329d5
commit 3c61e489b4
2 changed files with 165 additions and 0 deletions

29
.zsh_exports Normal file
View File

@@ -0,0 +1,29 @@
export PATH="$PATH:$HOME/.rbenv/shims"
export QT_QPA_PLATFORM="wayland"
export SDL_VIDEODRIVER="wayland"
export _JAVA_AWT_WM_NONREPARENTING="1"
export QT_QPA_PLATFORM="wayland"
export XDG_CURRENT_DESKTOP="sway"
export XDG_SESSION_DESKTOP="sway"
export GPG_TTY="$(tty)"
# Bun and bun completitions
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
[ -s "$HOME/.bun/_bun" ] && source "$HOME/.bun/_bun"
# Nvm
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && source "$NVM_DIR/nvm.sh" --no-use
# Ghcup
[ -f "/home/andrea/.ghcup/env" ] && . "/home/andrea/.ghcup/env"
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"