all repos — dotfiles-base @ 23b5492723397297ac5b1a100c9c37bbd475d02a

base important configs that can safely be used almost anywhere

.bash_profile

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
#
# ~/.bash_profile
#

[[ -f ~/.bashrc ]] && . ~/.bashrc

# autostart systemd default session on tty1
#if [[ "$(tty)" == '/dev/tty1' ]]; then
#    exec startx
#fi

# rust
. "$HOME/.cargo/env"

# opam configuration
test -r /home/x1phosura/.opam/opam-init/init.sh && . /home/x1phosura/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true