From 181d2fea773c95fc1bbe1238572d6c6a72361e34 Mon Sep 17 00:00:00 2001 From: John Mertz Date: Wed, 31 Jan 2024 22:37:31 -0700 Subject: [PATCH] Group language/tool imports --- bash/bashrc | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/bash/bashrc b/bash/bashrc index ebc1d735a..2a174325d 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -55,16 +55,18 @@ if [ -f ${HOME}/.dotfiles/bash/bash_aliases ]; then . "${HOME}/.dotfiles/bash/bash_aliases" fi +# Home Manager +. $HOME/.nix-profile/etc/profile.d/hm-session-vars.sh +. ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh +# Nix +. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh +# Rust +. "$HOME/.cargo/env" # Perl eval "$(plenv init -)" source ${HOME}/.dotfiles/bash/plenv-path.sh -source "$HOME/.cargo/env" -source ~/perl5/perlbrew/etc/bashrc -. "$HOME/.cargo/env" -# Hide errors -clear # Set window title to last command PS0='\[\e]0;$(last_command) - $TERM_TITLE\a\]'