43 lines
1 KiB
Bash
43 lines
1 KiB
Bash
export HISTFILESIZE=1000000000
|
|
export HISTSIZE=1000000000
|
|
|
|
export EDITOR='nvim'
|
|
export NAME='Sebastian Bugge'
|
|
export EMAIL='sbugge@proton.me'
|
|
|
|
export AUTOSSH_GATETIME=10
|
|
export AUTOSSH_POLL=20
|
|
|
|
export PATH="/sbin:/usr/sbin:/usr/games:$PATH"
|
|
|
|
# set PATH so it includes user's private bin if it exists
|
|
if [ -d "$HOME/bin" ]; then
|
|
PATH="$HOME/bin:$PATH"
|
|
fi
|
|
|
|
# set PATH so it includes user's private bin if it exists
|
|
if [ -d "$HOME/.local/bin" ]; then
|
|
PATH="$HOME/.local/bin:$PATH"
|
|
fi
|
|
|
|
if [ -s "$HOME/.cargo/env" ]; then
|
|
. "$HOME/.cargo/env"
|
|
fi
|
|
|
|
if [ -d "$HOME/go" ]; then
|
|
GOPATH="$HOME/go:/usr/share/gocode"
|
|
GOBIN="$HOME/go/bin"
|
|
PATH="$GOBIN:$PATH"
|
|
fi
|
|
|
|
[ -f "/home/kaholaz/.ghcup/env" ] && source "/home/kaholaz/.ghcup/env" # ghcup-env
|
|
|
|
if [ -f "$HOME/.local/share/pnpm" ]; then
|
|
export PNPM_HOME="$HOME/.local/share/pnpm"
|
|
case ":$PATH:" in
|
|
*":$PNPM_HOME:"*) ;;
|
|
*) export PATH="$PNPM_HOME:$PATH" ;;
|
|
esac
|
|
fi
|
|
|
|
if [ -e /home/kaholaz/.nix-profile/etc/profile.d/nix.sh ]; then . /home/kaholaz/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
|