1
0
mirror of https://github.com/vbrandl/dotfiles synced 2024-11-22 16:03:50 +01:00
dotfiles/shells/profile

18 lines
560 B
Plaintext
Raw Normal View History

2017-02-11 11:18:16 +01:00
# ~/.profile
2020-02-19 14:07:08 +01:00
export PATH="$HOME/.cargo/bin:$PATH"
export PATH="$PATH:$HOME/.pub-cache/bin"
PATH="$HOME/.node/bin:$PATH"
NODE_PATH="$HOME/.node/lib/node_modules:$NODE_PATH"
. "$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh"
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
2017-02-11 11:18:16 +01:00
# start window manager on login
if [ -z "$DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then
exec startx
export QT_QPA_PLATFORMTHEME='gtk2'
fi
# vim: set filetype=zsh ts=4 sw=4 tw=120 et :
2018-08-13 11:43:57 +02:00