From 50631b4f8a69b31af898c76bc171f5bb1538a120 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Wed, 19 Feb 2020 14:07:08 +0100 Subject: [PATCH] Formatting --- shells/profile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/shells/profile b/shells/profile index c958b58..0d88e9c 100644 --- a/shells/profile +++ b/shells/profile @@ -1,5 +1,13 @@ # ~/.profile +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* + # start window manager on login if [ -z "$DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then exec startx @@ -7,9 +15,3 @@ if [ -z "$DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then fi # vim: set filetype=zsh ts=4 sw=4 tw=120 et : -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" - -[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*