1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2026-02-05 16:43:22 +00:00

Load shell theme in .bash_profile to not mess with a connecting rsync

This commit is contained in:
Holger Just 2018-08-07 12:53:14 +02:00
parent 43c5579820
commit 02f66468fa
2 changed files with 4 additions and 4 deletions

View File

@ -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"

View File

@ -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