2024-07-29 23:16:08 +02:00
|
|
|
# System
|
2025-01-05 14:23:57 +01:00
|
|
|
export LOCAL_BIN="$HOME/.local/bin"
|
2024-07-29 23:16:08 +02:00
|
|
|
|
2024-05-14 00:18:48 +02:00
|
|
|
# Volta
|
2024-06-01 22:35:39 +02:00
|
|
|
export VOLTA_HOME="$HOME/.local/share/volta"
|
2025-01-05 14:23:57 +01:00
|
|
|
|
|
|
|
# NPM
|
|
|
|
export npm_config_cache="$HOME/.cache/npm"
|
|
|
|
export npm_config_prefix="$HOME/.local/share/npm"
|
|
|
|
export npm_config_userconfig="$HOME/.config/npmrc"
|
|
|
|
export npm_config_loglevel="verbose"
|
|
|
|
export npm_config_log="$HOME/.local/share/npm/logs"
|
2024-07-21 20:45:57 +02:00
|
|
|
|
|
|
|
# Jetbrains Toolbox
|
2025-01-05 14:23:57 +01:00
|
|
|
export JETBRAINS_TOOLBOX_HOME="/home/snoweuph/.local/share/JetBrains/Toolbox"
|
|
|
|
|
|
|
|
# Go
|
|
|
|
export GOPATH=~/.local/share/go
|
|
|
|
export GOBIN=$GOPATH/bin
|
|
|
|
|
|
|
|
# Rust
|
|
|
|
export CARGO_HOME=$HOME/.local/share/cargo
|
|
|
|
export RUSTUP_HOME=$HOME/.local/share/rustup
|
|
|
|
|
|
|
|
# Php
|
|
|
|
export COMPOSER_HOME=$HOME/.local/share/composer
|
|
|
|
|
|
|
|
export PATH="$PATH:$LOCAL_BIN:$VOLTA_HOME/bin:$GOBIN:$CARGO_HOME/bin:$COMPOSER_HOME/vendor/bin:$JETBRAINS_TOOLBOX_HOME/scripts:$"
|
|
|
|
|
|
|
|
|
|
|
|
# ROCM - RX 6650 XT
|
|
|
|
export HSA_OVERRIDE_GFX_VERSION=10.3.0
|
|
|
|
|
|
|
|
# Just
|
|
|
|
export JUST_UNSTABLE=1
|
2025-01-15 00:01:20 +01:00
|
|
|
|
|
|
|
# Less Paging
|
|
|
|
export LESS='-R --mouse'
|