diff options
author | Amin Bandali <bandali@gnu.org> | 2019-05-11 20:04:37 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-05-11 20:04:37 -0400 |
commit | 840b56cae3c2610b13b74a722ae5db372cac43d2 (patch) | |
tree | 2d67f2fc91ef5e0a6dadd7265d34b4ba6f5161d5 /.bash_profile | |
parent | 429f76621cbc558b2b620c8df1b85f6736b38cb2 (diff) | |
download | configs-840b56cae3c2610b13b74a722ae5db372cac43d2.tar.gz configs-840b56cae3c2610b13b74a722ae5db372cac43d2.tar.xz configs-840b56cae3c2610b13b74a722ae5db372cac43d2.zip |
bash: fix config in emacs’s ansi-term and GNU Screen
The issue seems to be that ~/.bash_profile isn’t sourced for
interactive non-login shells. So, might want to try detecting
non-login shells in general rather than fixing only for ansi-term and
screen.
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.bash_profile b/.bash_profile index f41056d..d65bb56 100644 --- a/.bash_profile +++ b/.bash_profile @@ -4,4 +4,4 @@ include () { include ~/.profile include ~/.nix-profile/etc/profile.d/nix.sh -include ~/.bashrc +[[ $TERM = "eterm-color" || $TERM = "screen" ]] || include ~/.bashrc |