From 02f66468fa308e5b29e5472d0f7c673959045b39 Mon Sep 17 00:00:00 2001 From: Holger Just Date: Tue, 7 Aug 2018 12:53:14 +0200 Subject: [PATCH] Load shell theme in .bash_profile to not mess with a connecting rsync --- .bash_profile | 4 ++++ .bashrc | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bash_profile b/.bash_profile index 0330d61..2456be5 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,2 +1,6 @@ [ -f ~/.profile ] && . ~/.profile [ -f ~/.bashrc ] && . ~/.bashrc + +BASE16_SCHEME="tomorrow" +BASE16_SHELL="$DOTFILES/base16-shell/base16-$BASE16_SCHEME.dark.sh" +[[ -s "$BASE16_SHELL" ]] && . "$BASE16_SHELL" diff --git a/.bashrc b/.bashrc index fd147f4..f518424 100644 --- a/.bashrc +++ b/.bashrc @@ -31,10 +31,6 @@ shopt -u mailwarn >/dev/null 2>&1 shopt -s no_empty_cmd_completion >/dev/null 2>&1 bind Space:magic-space -BASE16_SCHEME="tomorrow" -BASE16_SHELL="$DOTFILES/base16-shell/base16-$BASE16_SCHEME.dark.sh" -[[ -s "$BASE16_SHELL" ]] && . "$BASE16_SHELL" - # Bash History export HISTIGNORE="&:ls:ll:la:l.:pwd:exit:clear" export HISTCONTROL=ignoreboth