This commit is contained in:
JOLIMAITRE Matthieu 2024-06-18 04:25:02 +02:00
parent ad4543a58e
commit be9a92abb6
7 changed files with 26 additions and 14 deletions

View file

@ -25,10 +25,10 @@ ZSH_AUTOSUGGEST_STRATEGY=(completion history)
ZSH_AUTOSUGGEST_USE_ASYNC="true"
# profile
source /home/mb/.zprofile
source $HOME/.zprofile
# extend path
export PATH="/home/mb/.cargo/bin":"/home/mb/.local/bin":"/home/mb/.deno/bin":"$HOME/.local/scripts":$PATH
export PATH="$HOME/.cargo/bin":"$HOME/.local/bin":"$HOME/.deno/bin":"$HOME/.local/scripts":$PATH
# [ NPM ]
@ -46,15 +46,15 @@ MANPATH="$NPM_PACKAGES/share/man:$(manpath)"
NODE_PATH="$NPM_PACKAGES/lib/node_modules:$NODE_PATH"
# opam configuration
[[ ! -r /home/mb/.opam/opam-init/init.zsh ]] || source /home/mb/.opam/opam-init/init.zsh > /dev/null 2> /dev/null
[[ ! -r $HOME/.opam/opam-init/init.zsh ]] || source $HOME/.opam/opam-init/init.zsh > /dev/null 2> /dev/null
export CARGO_TARGET_DIR="/home/mb/.cache/cargo-target"
export CARGO_TARGET_DIR="$HOME/.cache/cargo-target"
export RUSTC_WRAPPER="/usr/bin/sccache"
export SCCACHE_DIR="/media/hdd1/cache/sccache"
export GOPATH="/home/mb/.go"
export GOPATH="$HOME/.go"
export C_INCLUDE_PATH="/home/mb/.local/include"
export C_INCLUDE_PATH="$HOME/.local/include"
[ -f "/home/mb/.ghcup/env" ] && source "/home/mb/.ghcup/env" # ghcup-env
[ -f "$HOME/.ghcup/env" ] && source "$HOME/.ghcup/env" # ghcup-env
export TERM=xterm-256color