Fish: run zsh instead of fish inside Emacs

This commit is contained in:
Marcel Kapfer 2018-08-09 23:08:42 +02:00
parent 3b12a5aa1c
commit 0dde9153b7
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 6 additions and 0 deletions

View File

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