From 0dde9153b76f301da38235b4be09052e9a3fe927 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Thu, 9 Aug 2018 23:08:42 +0200 Subject: [PATCH] Fish: run zsh instead of fish inside Emacs --- shells/fish/config.fish | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/shells/fish/config.fish b/shells/fish/config.fish index 58cd2f9..e04a471 100644 --- a/shells/fish/config.fish +++ b/shells/fish/config.fish @@ -115,6 +115,12 @@ if test -e $NIX_PROFILE source $NIX_PROFILE end +# Run zsh when using emacs +# Current problem with fish seems to be the theme +if test $TERM = "eterm-color" + exec zsh +end + # Automatically start X at login # source: https://wiki.archlinux.org/index.php/Fish#Start_X_at_login # This must be at the bottom of this file