blob: d29e014977b3affeda9a53af7cb9d5daad31feb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
export EDITOR=nvim
export VISUAL=nvim
# Export PATH without repetitions
export -U PATH="/home/urbain/.config/guix/current/bin${PATH:+:}$PATH"
export -U PATH=$(echo "$HOME/.gem/ruby/"*"/bin")"${PATH:+:}$PATH"
export -U PATH="/usr/local/sbin${PATH:+:}$PATH"
export -U PATH="/usr/bin${PATH:+:}$PATH"
export -U PATH="/usr/local/sbin:/usr/local/bin${PATH:+:}$PATH"
# Python startup file
[[ -f "$HOME/.pythonrc" ]] && export PYTHONSTARTUP="$HOME/.pythonrc"
# Source guix profile
guix_profile=$HOME/.guix-env
[[ -f $guix_profile ]] && . $guix_profile
|